|
4 | 4 |
|
5 | 5 | <groupId>io.github.s-sathish</groupId> |
6 | 6 | <artifactId>redlock-java</artifactId> |
7 | | - <version>1.0</version> |
| 7 | + <version>1.0.1</version> |
8 | 8 | <name>RedLock-Java</name> |
9 | 9 | <description>RedLock in Java</description> |
10 | 10 | <url>https://github.com/s-sathish/redlock-java</url> |
11 | 11 |
|
| 12 | + <mailingLists> |
| 13 | + <mailingList> |
| 14 | + <name>RedLock Java Mailing List</name> |
| 15 | + <post>redlock-java@googlegroups.com</post> |
| 16 | + <archive> |
| 17 | + http://groups.google.com/g/redlock-java |
| 18 | + </archive> |
| 19 | + </mailingList> |
| 20 | + </mailingLists> |
| 21 | + |
12 | 22 | <developers> |
13 | 23 | <developer> |
14 | 24 | <id>s-sathish</id> |
|
25 | 35 | </license> |
26 | 36 | </licenses> |
27 | 37 |
|
| 38 | + <issueManagement> |
| 39 | + <system>github</system> |
| 40 | + <url>https://github.com/s-sathish/redlock-java/issues</url> |
| 41 | + </issueManagement> |
| 42 | + |
28 | 43 | <scm> |
29 | 44 | <connection>scm:git:git@github.com:s-sathish/redlock-java.git</connection> |
30 | 45 | <url>scm:git:git@github.com:s-sathish/redlock-java.git</url> |
31 | 46 | <developerConnection>scm:git:git@github.com:s-sathish/redlock-java.git</developerConnection> |
32 | | - <tag>redlock-java-1.0</tag> |
| 47 | + <tag>redlock-java-1.0.1</tag> |
33 | 48 | </scm> |
34 | 49 |
|
35 | 50 | <properties> |
|
66 | 81 | <distributionManagement> |
67 | 82 | <snapshotRepository> |
68 | 83 | <id>ossrh</id> |
69 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 84 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
70 | 85 | </snapshotRepository> |
71 | 86 | <repository> |
72 | 87 | <id>ossrh</id> |
73 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 88 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
74 | 89 | </repository> |
75 | 90 | </distributionManagement> |
76 | 91 |
|
|
135 | 150 | <extensions>true</extensions> |
136 | 151 | <configuration> |
137 | 152 | <serverId>ossrh</serverId> |
138 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 153 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
139 | 154 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
140 | 155 | </configuration> |
141 | 156 | </plugin> |
|
166 | 181 | </execution> |
167 | 182 | </executions> |
168 | 183 | </plugin> |
| 184 | + <plugin> |
| 185 | + <groupId>org.apache.maven.plugins</groupId> |
| 186 | + <artifactId>maven-gpg-plugin</artifactId> |
| 187 | + <version>1.6</version> |
| 188 | + <executions> |
| 189 | + <execution> |
| 190 | + <id>sign-artifacts</id> |
| 191 | + <phase>verify</phase> |
| 192 | + <goals> |
| 193 | + <goal>sign</goal> |
| 194 | + </goals> |
| 195 | + <configuration> |
| 196 | + <gpgArguments> |
| 197 | + <arg>--pinentry-mode</arg> |
| 198 | + <arg>loopback</arg> |
| 199 | + </gpgArguments> |
| 200 | + </configuration> |
| 201 | + </execution> |
| 202 | + </executions> |
| 203 | + </plugin> |
169 | 204 | </plugins> |
170 | 205 | </build> |
171 | 206 |
|
|
185 | 220 | <goals> |
186 | 221 | <goal>sign</goal> |
187 | 222 | </goals> |
| 223 | + <configuration> |
| 224 | + <gpgArguments> |
| 225 | + <arg>--pinentry-mode</arg> |
| 226 | + <arg>loopback</arg> |
| 227 | + </gpgArguments> |
| 228 | + </configuration> |
188 | 229 | </execution> |
189 | 230 | </executions> |
190 | 231 | </plugin> |
|
0 commit comments