Skip to content

Commit

Permalink
upgrade to 1.0.2-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Mar 4, 2016
1 parent 818dd72 commit f18a7f5
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 17 deletions.
39 changes: 28 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.dangdang</groupId>
<artifactId>sharding-jdbc</artifactId>
<version>1.0.1</version>
<version>1.0.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>${project.artifactId}</name>

Expand Down Expand Up @@ -60,9 +60,10 @@
<maven-pmd-plugin.version>3.5</maven-pmd-plugin.version>
<jdepend-maven-plugin.version>2.0</jdepend-maven-plugin.version>
<taglist-maven-plugin.version>2.4</taglist-maven-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down Expand Up @@ -230,7 +231,7 @@
</dependency>
</dependencies>
</dependencyManagement>

<build>
<pluginManagement>
<plugins>
Expand Down Expand Up @@ -412,9 +413,25 @@
<artifactId>coveralls-maven-plugin</artifactId>
<version>${coveralls-maven-plugin.version}</version>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
-->
</plugins>
</build>

<reporting>
<plugins>
<plugin>
Expand Down Expand Up @@ -486,7 +503,7 @@
</plugin>
</plugins>
</reporting>

<repositories>
<repository>
<id>henryyan-mavenrepo</id>
Expand All @@ -513,7 +530,7 @@
</releases>
</repository>
</repositories>

<url>http://www.dangdang.com</url>
<description>RDB Sharding</description>
<licenses>
Expand All @@ -523,20 +540,20 @@
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:https://github.com/dangdangdotcom/sharding-jdbc</connection>
<developerConnection>scm:https://github.com/dangdangdotcom/sharding-jdbc</developerConnection>
<url>https://github.com/dangdangdotcom/sharding-jdbc</url>
</scm>

<mailingLists>
<mailingList>
<name>Zhangliang</name>
<post>[email protected]</post>
</mailingList>
</mailingLists>

<developers>
<developer>
<id>zhangliang</id>
Expand All @@ -545,7 +562,7 @@
<timezone>8</timezone>
</developer>
</developers>

<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
Expand All @@ -556,4 +573,4 @@
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
</project>
</project>
2 changes: 1 addition & 1 deletion sharding-jdbc-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.dangdang</groupId>
<artifactId>sharding-jdbc</artifactId>
<version>1.0.1</version>
<version>1.0.2-SNAPSHOT</version>
</parent>
<artifactId>sharding-jdbc-core</artifactId>
<name>${project.artifactId}</name>
Expand Down
4 changes: 2 additions & 2 deletions sharding-jdbc-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.dangdang</groupId>
<artifactId>sharding-jdbc-example</artifactId>
<version>1.0.1</version>
<version>1.0.2-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
Expand All @@ -17,7 +17,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.locale>zh_CN</project.build.locale>

<sharding-jdbc.version>1.0.1</sharding-jdbc.version>
<sharding-jdbc.version>1.0.2-SNAPSHOT</sharding-jdbc.version>

<commons-dbcp.version>1.4</commons-dbcp.version>
<mysql-connector-java.version>5.1.30</mysql-connector-java.version>
Expand Down
2 changes: 1 addition & 1 deletion sharding-jdbc-example/sharding-jdbc-example-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.dangdang</groupId>
<artifactId>sharding-jdbc-example</artifactId>
<version>1.0.1</version>
<version>1.0.2-SNAPSHOT</version>
</parent>
<artifactId>sharding-jdbc-example-jdbc</artifactId>
</project>
2 changes: 1 addition & 1 deletion sharding-jdbc-example/sharding-jdbc-example-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.dangdang</groupId>
<artifactId>sharding-jdbc-example</artifactId>
<version>1.0.1</version>
<version>1.0.2-SNAPSHOT</version>
</parent>
<artifactId>sharding-jdbc-example-jpa</artifactId>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.dangdang</groupId>
<artifactId>sharding-jdbc-example</artifactId>
<version>1.0.1</version>
<version>1.0.2-SNAPSHOT</version>
</parent>
<artifactId>sharding-jdbc-example-mybatis</artifactId>

Expand Down

0 comments on commit f18a7f5

Please sign in to comment.