Skip to content

Commit

Permalink
update config
Browse files Browse the repository at this point in the history
  • Loading branch information
Dung Ta Van committed Apr 27, 2016
1 parent 1042f98 commit bd326a5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 99 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Build Status](https://travis-ci.org/tavandung12/properties-file.svg?branch=master)](https://travis-ci.org/tavandung12/properties-file)
[![Build Status](https://travis-ci.org/tvd12/properties-file.svg?branch=master)](https://travis-ci.org/tvd12/properties-file)
[![Dependency Status](https://www.versioneye.com/user/projects/5717990efcd19a00415b1f61/badge.svg?style=flat)](https://www.versioneye.com/user/projects/5717990efcd19a00415b1f61)
[![Coverage Status](https://coveralls.io/repos/github/tavandung12/properties-file/badge.svg?branch=master)](https://coveralls.io/github/tavandung12/properties-file?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/tvd12/properties-file/badge.svg?branch=master)](https://coveralls.io/github/tvd12/properties-file?branch=master)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.tvd12/properties-file/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.tvd12/properties-file)
[![Javadoc](https://javadoc-emblem.rhcloud.com/doc/com.tvd12/properties-file/badge.svg)](http://www.javadoc.io/doc/com.tvd12/properties-file)

Expand Down Expand Up @@ -35,6 +35,7 @@ This project support for interact with properties file
```

**3. Create a factory and use this factory for creating a new instance**

Let's say you have a properties file that save pairs of interface and implementation class, example:
```java
com.tvd12.interface.IClassA=com.tvd12.implementation.ClassAImpl
Expand Down
119 changes: 22 additions & 97 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
A project support for interact with properties file
</description>

<organization>
<name>Young Monkeys</name>
<url>http://www.tvd12.com</url>
</organization>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
Expand All @@ -41,35 +46,30 @@
<organizationUrl>http://www.tvd12.com</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git@github.com:tavandung12/properties-file.git</connection>
<developerConnection>scm:git:git@github.com:tavandung12/properties-file.git</developerConnection>
<url>git@github.com:tavandung12/properties-file.git</url>
<url>https://github.com/tavandung12/properties-file</url>
</scm>


<issueManagement>
<system>Github</system>
<url>https://github.com/tavandung12/properties-file/issues</url>
</issueManagement>

<ciManagement>
<system>travis</system>
<url>https://travis-ci.org/tavandung12/properties-file</url>
</ciManagement>

<distributionManagement>
<repository>
<id>oss.sonatype.org</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>oss.sonatype.org</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<site>
<id>tvd12</id>
<url>http://www.tvd12.com/</url>
</site>
</distributionManagement>

<!--
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
-->

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -127,81 +127,6 @@
</executions>
</plugin>
</plugins>
<!--
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.1</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>package-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>package-javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6</version>
<extensions>true</extensions>
<configuration>
<serverId>oss.sonatype.org</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<description>${project.version}</description>
</configuration>
<executions>
<execution>
<id>deploy-to-sonatype</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
<goal>release</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
-->
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings
Expand Down

0 comments on commit bd326a5

Please sign in to comment.