|
6 | 6 |
|
7 | 7 | <groupId>io.whitfin</groupId> |
8 | 8 | <artifactId>siphash</artifactId> |
9 | | - <version>2.0-SNAPSHOT</version> |
| 9 | + <version>3.0-SNAPSHOT</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 |
|
12 | 12 | <name>SipHash</name> |
|
28 | 28 | </developers> |
29 | 29 |
|
30 | 30 | <scm> |
| 31 | + <url>git@github.com:whitfin/siphash-java.git</url> |
31 | 32 | <connection>scm:git:git@github.com:whitfin/siphash-java.git</connection> |
32 | 33 | <developerConnection>scm:git:git@github.com:whitfin/siphash-java.git</developerConnection> |
33 | | - <url>git@github.com:whitfin/siphash-java.git</url> |
34 | 34 | </scm> |
35 | 35 |
|
36 | 36 | <licenses> |
37 | 37 | <license> |
38 | 38 | <name>MIT License</name> |
39 | | - <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 39 | + <url>https://www.opensource.org/licenses/mit-license.php</url> |
40 | 40 | </license> |
41 | 41 | </licenses> |
42 | 42 |
|
43 | 43 | <distributionManagement> |
44 | 44 | <snapshotRepository> |
45 | 45 | <id>ossrh</id> |
46 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 46 | + <url>https://central.sonatype.com/api/v1/publisher/deployments/upload</url> |
47 | 47 | </snapshotRepository> |
48 | 48 | <repository> |
49 | 49 | <id>ossrh</id> |
50 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 50 | + <url>https://central.sonatype.com/api/v1/publisher/deployments/upload</url> |
51 | 51 | </repository> |
52 | 52 | </distributionManagement> |
53 | 53 |
|
|
68 | 68 | <plugin> |
69 | 69 | <groupId>org.apache.maven.plugins</groupId> |
70 | 70 | <artifactId>maven-source-plugin</artifactId> |
71 | | - <version>3.0.1</version> |
| 71 | + <version>3.4.0</version> |
72 | 72 | <executions> |
73 | 73 | <execution> |
74 | 74 | <id>attach-sources</id> |
|
81 | 81 | <plugin> |
82 | 82 | <groupId>org.apache.maven.plugins</groupId> |
83 | 83 | <artifactId>maven-javadoc-plugin</artifactId> |
84 | | - <version>3.0.0</version> |
| 84 | + <version>3.12.0</version> |
85 | 85 | <executions> |
86 | 86 | <execution> |
87 | 87 | <id>attach-javadocs</id> |
|
94 | 94 | <plugin> |
95 | 95 | <groupId>org.apache.maven.plugins</groupId> |
96 | 96 | <artifactId>maven-gpg-plugin</artifactId> |
97 | | - <version>1.6</version> |
| 97 | + <version>3.2.8</version> |
98 | 98 | <executions> |
99 | 99 | <execution> |
100 | 100 | <id>sign-artifacts</id> |
|
106 | 106 | </executions> |
107 | 107 | </plugin> |
108 | 108 | <plugin> |
109 | | - <groupId>org.sonatype.plugins</groupId> |
110 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
111 | | - <version>1.6.8</version> |
| 109 | + <groupId>org.sonatype.central</groupId> |
| 110 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 111 | + <version>0.9.0</version> |
112 | 112 | <extensions>true</extensions> |
113 | 113 | <configuration> |
114 | | - <serverId>ossrh</serverId> |
115 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
116 | | - <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 114 | + <tokenAuth>true</tokenAuth> |
| 115 | + <autoPublish>true</autoPublish> |
| 116 | + <publishingServerId>ossrh</publishingServerId> |
117 | 117 | </configuration> |
118 | 118 | </plugin> |
119 | 119 | </plugins> |
|
0 commit comments