|
6 | 6 | <groupId>io.github.dengliming.redismodule</groupId>
|
7 | 7 | <artifactId>redis-modules-java</artifactId>
|
8 | 8 | <packaging>pom</packaging>
|
9 |
| - <version>1.0.1-SNAPSHOT</version> |
| 9 | + <version>1.0.0</version> |
10 | 10 | <modules>
|
11 | 11 | <module>all</module>
|
12 | 12 | <module>redisbloom</module>
|
|
18 | 18 | </modules>
|
19 | 19 |
|
20 | 20 | <name>Redis-Modules-Java</name>
|
| 21 | + <description>Java Client libraries for redis-modules.</description> |
21 | 22 | <url>https://github.com/dengliming/redis-modules-java</url>
|
22 | 23 |
|
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 | + |
| 43 | + <roles> |
| 44 | + <role>Founder</role> |
| 45 | + <role>Developer</role> |
| 46 | + </roles> |
| 47 | + </developer> |
| 48 | + </developers> |
| 49 | + |
| 50 | + <properties> |
24 | 51 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
25 | 52 | <redisson.version>3.13.4</redisson.version>
|
26 | 53 | <junit.version>5.6.2</junit.version>
|
|
29 | 56 | <maven-shade-plugin.version>3.2.1</maven-shade-plugin.version>
|
30 | 57 | <maven-release-plugin.version>2.5.3</maven-release-plugin.version>
|
31 | 58 | <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> |
32 | 61 | </properties>
|
33 | 62 |
|
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 |
| - |
41 | 63 | <dependencyManagement>
|
42 | 64 | <dependencies>
|
43 | 65 | <dependency>
|
|
136 | 158 | </configuration>
|
137 | 159 | </plugin>
|
138 | 160 |
|
| 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 | + |
139 | 178 | <plugin>
|
140 | 179 | <groupId>org.apache.maven.plugins</groupId>
|
141 | 180 | <artifactId>maven-source-plugin</artifactId>
|
|
169 | 208 | </execution>
|
170 | 209 | </executions>
|
171 | 210 | </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> |
172 | 226 | </plugins>
|
173 | 227 | </build>
|
174 | 228 |
|
175 | 229 | <distributionManagement>
|
176 |
| - <repository> |
177 |
| - <id>releases</id> |
178 |
| - <name>releases</name> |
179 |
| - <url>file:/data/mvn-repo/repository/releases/</url> |
180 |
| - </repository> |
181 | 230 | <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> |
185 | 233 | </snapshotRepository>
|
| 234 | + <repository> |
| 235 | + <id>oss</id> |
| 236 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url> |
| 237 | + </repository> |
186 | 238 | </distributionManagement>
|
187 | 239 | </project>
|
0 commit comments