Skip to content

Commit 02e360d

Browse files
committed
5.17.7 for release
1 parent d1ab79c commit 02e360d

File tree

4 files changed

+55
-14
lines changed

4 files changed

+55
-14
lines changed

pom.xml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.aliyun.openservices</groupId>
77
<artifactId>tablestore-parent</artifactId>
8-
<version>1.0</version>
8+
<version>1.0.2</version>
99
<name>AliCloud TableStore</name>
1010
<url>http://www.aliyun.com</url>
1111
<description>AliCloud TableStore</description>
@@ -16,8 +16,9 @@
1616
</license>
1717
</licenses>
1818
<scm>
19-
<url></url>
20-
<connection></connection>
19+
<connection>scm:git:git://github.com/aliyun/aliyun-tablestore-java-sdk.git</connection>
20+
<developerConnection>scm:git:git@github.com:aliyun/aliyun-tablestore-java-sdk.git</developerConnection>
21+
<url>https://github.com/aliyun/aliyun-tablestore-java-sdk</url>
2122
</scm>
2223
<developers>
2324
<developer>
@@ -36,24 +37,24 @@
3637
<distributionManagement>
3738
<snapshotRepository>
3839
<id>sonatype-nexus-snapshots</id>
39-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
40+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
4041
</snapshotRepository>
4142
<repository>
4243
<id>sonatype-nexus-staging</id>
43-
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
44+
<url>https://central.sonatype.com</url>
4445
</repository>
4546
</distributionManagement>
4647
<build>
4748
<plugins>
4849
<plugin>
49-
<groupId>org.sonatype.plugins</groupId>
50-
<artifactId>nexus-staging-maven-plugin</artifactId>
51-
<version>1.6.3</version>
50+
<groupId>org.sonatype.central</groupId>
51+
<artifactId>central-publishing-maven-plugin</artifactId>
52+
<version>0.8.0</version>
5253
<extensions>true</extensions>
5354
<configuration>
54-
<serverId>sonatype-nexus-staging</serverId>
55-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
56-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
55+
<publishingServerId>central</publishingServerId>
56+
<autoPublish>true</autoPublish>
57+
<waitUntil>published</waitUntil>
5758
</configuration>
5859
</plugin>
5960
<plugin>

tablestore-shaded-httpasyncclient/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.aliyun.openservices</groupId>
77
<artifactId>tablestore-parent</artifactId>
8-
<version>1.0</version>
8+
<version>1.0.2</version>
99
</parent>
1010
<artifactId>tablestore-shaded-httpasyncclient</artifactId>
1111
<version>4.0.2</version>

tablestore-shaded-protobuf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.aliyun.openservices</groupId>
77
<artifactId>tablestore-parent</artifactId>
8-
<version>1.0</version>
8+
<version>1.0.2</version>
99
</parent>
1010
<artifactId>tablestore-shaded-protobuf</artifactId>
1111
<version>4.28.2</version>

tablestore/pom.xml

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.aliyun.openservices</groupId>
1111
<artifactId>tablestore-parent</artifactId>
12-
<version>1.0</version>
12+
<version>1.0.2</version>
1313
</parent>
1414
<description>Aliyun Open Services SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com</description>
1515
<profiles>
@@ -23,6 +23,21 @@
2323
</properties>
2424
</profile>
2525
</profiles>
26+
<scm>
27+
<connection>scm:git:git://github.com/aliyun/aliyun-tablestore-java-sdk.git</connection>
28+
<developerConnection>scm:git:git@github.com:aliyun/aliyun-tablestore-java-sdk.git</developerConnection>
29+
<url>https://github.com/aliyun/aliyun-tablestore-java-sdk</url>
30+
</scm>
31+
<distributionManagement>
32+
<snapshotRepository>
33+
<id>sonatype-nexus-snapshots</id>
34+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
35+
</snapshotRepository>
36+
<repository>
37+
<id>sonatype-nexus-staging</id>
38+
<url>https://central.sonatype.com</url>
39+
</repository>
40+
</distributionManagement>
2641
<dependencies>
2742
<dependency>
2843
<groupId>junit</groupId>
@@ -105,6 +120,17 @@
105120
</dependencies>
106121
<build>
107122
<plugins>
123+
<plugin>
124+
<groupId>org.sonatype.central</groupId>
125+
<artifactId>central-publishing-maven-plugin</artifactId>
126+
<version>0.8.0</version>
127+
<extensions>true</extensions>
128+
<configuration>
129+
<publishingServerId>central</publishingServerId>
130+
<autoPublish>true</autoPublish>
131+
<waitUntil>published</waitUntil>
132+
</configuration>
133+
</plugin>
108134
<plugin>
109135
<artifactId>maven-compiler-plugin</artifactId>
110136
<version>2.3.2</version>
@@ -133,6 +159,20 @@
133159
</execution>
134160
</executions>
135161
</plugin>
162+
<plugin>
163+
<groupId>org.apache.maven.plugins</groupId>
164+
<artifactId>maven-gpg-plugin</artifactId>
165+
<version>3.2.1</version>
166+
<executions>
167+
<execution>
168+
<id>sign-artifacts</id>
169+
<phase>verify</phase>
170+
<goals>
171+
<goal>sign</goal>
172+
</goals>
173+
</execution>
174+
</executions>
175+
</plugin>
136176
<plugin>
137177
<groupId>org.apache.maven.plugins</groupId>
138178
<artifactId>maven-surefire-plugin</artifactId>

0 commit comments

Comments
 (0)