Skip to content

Commit d0a3051

Browse files
committed
prepare for release
1 parent be0deea commit d0a3051

File tree

8 files changed

+76
-24
lines changed

8 files changed

+76
-24
lines changed

all/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>io.github.dengliming.redismodule</groupId>
55
<artifactId>redis-modules-java</artifactId>
6-
<version>1.0.1-SNAPSHOT</version>
6+
<version>1.0.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>all</artifactId>

commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>io.github.dengliming.redismodule</groupId>
55
<artifactId>redis-modules-java</artifactId>
6-
<version>1.0.1-SNAPSHOT</version>
6+
<version>1.0.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>commons</artifactId>

pom.xml

Lines changed: 69 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>io.github.dengliming.redismodule</groupId>
77
<artifactId>redis-modules-java</artifactId>
88
<packaging>pom</packaging>
9-
<version>1.0.1-SNAPSHOT</version>
9+
<version>1.0.0</version>
1010
<modules>
1111
<module>all</module>
1212
<module>redisbloom</module>
@@ -18,9 +18,36 @@
1818
</modules>
1919

2020
<name>Redis-Modules-Java</name>
21+
<description>Java Client libraries for redis-modules.</description>
2122
<url>https://github.com/dengliming/redis-modules-java</url>
2223

23-
<properties>
24+
<scm>
25+
<url>git:[email protected]:dengliming/redis-modules-java.git</url>
26+
<connection>scm:git:[email protected]:dengliming/redis-modules-java.git</connection>
27+
<developerConnection>scm:git:[email protected]:dengliming/redis-modules-java.git</developerConnection>
28+
<tag>HEAD</tag>
29+
</scm>
30+
31+
<licenses>
32+
<license>
33+
<name>Apache License, Version 2.0</name>
34+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
35+
</license>
36+
</licenses>
37+
38+
<developers>
39+
<developer>
40+
<id>dengliming</id>
41+
<name>dengliming</name>
42+
<email>[email protected]</email>
43+
<roles>
44+
<role>Founder</role>
45+
<role>Developer</role>
46+
</roles>
47+
</developer>
48+
</developers>
49+
50+
<properties>
2451
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2552
<redisson.version>3.13.4</redisson.version>
2653
<junit.version>5.6.2</junit.version>
@@ -29,15 +56,10 @@
2956
<maven-shade-plugin.version>3.2.1</maven-shade-plugin.version>
3057
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
3158
<jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version>
59+
<gpg-plugin.version>1.6</gpg-plugin.version>
60+
<maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version>
3261
</properties>
3362

34-
<scm>
35-
<url>scm:git:[email protected]:dengliming/redis-modules-java.git</url>
36-
<connection>scm:git:[email protected]:dengliming/redis-modules-java.git</connection>
37-
<developerConnection>scm:git:[email protected]:dengliming/redis-modules-java.git</developerConnection>
38-
<tag>HEAD</tag>
39-
</scm>
40-
4163
<dependencyManagement>
4264
<dependencies>
4365
<dependency>
@@ -136,6 +158,23 @@
136158
</configuration>
137159
</plugin>
138160

161+
<plugin>
162+
<artifactId>maven-javadoc-plugin</artifactId>
163+
<version>${maven-javadoc-plugin.version}</version>
164+
<configuration>
165+
<aggregate>true</aggregate>
166+
<additionalparam>-Xdoclint:none</additionalparam>
167+
</configuration>
168+
<executions>
169+
<execution>
170+
<id>attach-javadoc</id>
171+
<goals>
172+
<goal>jar</goal>
173+
</goals>
174+
</execution>
175+
</executions>
176+
</plugin>
177+
139178
<plugin>
140179
<groupId>org.apache.maven.plugins</groupId>
141180
<artifactId>maven-source-plugin</artifactId>
@@ -169,19 +208,32 @@
169208
</execution>
170209
</executions>
171210
</plugin>
211+
212+
<plugin>
213+
<groupId>org.apache.maven.plugins</groupId>
214+
<artifactId>maven-gpg-plugin</artifactId>
215+
<version>${gpg-plugin.version}</version>
216+
<executions>
217+
<execution>
218+
<id>sign-artifacts</id>
219+
<phase>verify</phase>
220+
<goals>
221+
<goal>sign</goal>
222+
</goals>
223+
</execution>
224+
</executions>
225+
</plugin>
172226
</plugins>
173227
</build>
174228

175229
<distributionManagement>
176-
<repository>
177-
<id>releases</id>
178-
<name>releases</name>
179-
<url>file:/data/mvn-repo/repository/releases/</url>
180-
</repository>
181230
<snapshotRepository>
182-
<id>snapshot</id>
183-
<name>snapshot</name>
184-
<url>file:/data/mvn-repo/repository/snapshots/</url>
231+
<id>oss</id>
232+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
185233
</snapshotRepository>
234+
<repository>
235+
<id>oss</id>
236+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url>
237+
</repository>
186238
</distributionManagement>
187239
</project>

redisai/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.github.dengliming.redismodule</groupId>
66
<artifactId>redis-modules-java</artifactId>
7-
<version>1.0.1-SNAPSHOT</version>
7+
<version>1.0.0</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>redisai</artifactId>

redisbloom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.github.dengliming.redismodule</groupId>
66
<artifactId>redis-modules-java</artifactId>
7-
<version>1.0.1-SNAPSHOT</version>
7+
<version>1.0.0</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>redisbloom</artifactId>

redisearch/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.github.dengliming.redismodule</groupId>
66
<artifactId>redis-modules-java</artifactId>
7-
<version>1.0.1-SNAPSHOT</version>
7+
<version>1.0.0</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>redisearch</artifactId>

redisgears/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.github.dengliming.redismodule</groupId>
66
<artifactId>redis-modules-java</artifactId>
7-
<version>1.0.1-SNAPSHOT</version>
7+
<version>1.0.0</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>redisgears</artifactId>

redistimeseries/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.github.dengliming.redismodule</groupId>
66
<artifactId>redis-modules-java</artifactId>
7-
<version>1.0.1-SNAPSHOT</version>
7+
<version>1.0.0</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>redistimeseries</artifactId>

0 commit comments

Comments
 (0)