Skip to content

Commit 5f0590e

Browse files
committed
Fix distributionManagement urls, should be https
1 parent 9bb2be2 commit 5f0590e

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

pom.xml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -218,17 +218,14 @@
218218
</profile>
219219
</profiles>
220220
<distributionManagement>
221-
<repository>
222-
<id>sonatype-nexus-staging</id>
223-
<name>Sonatype Release</name>
224-
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2
225-
</url>
226-
</repository>
227221
<snapshotRepository>
228-
<id>sonatype-nexus-snapshots</id>
229-
<name>sonatype-nexus-snapshots</name>
230-
<url>${distMgmtSnapshotsUrl}</url>
222+
<id>ossrh</id>
223+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
231224
</snapshotRepository>
225+
<repository>
226+
<id>ossrh</id>
227+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
228+
</repository>
232229
</distributionManagement>
233230
<modules>
234231
<module>netty-utils</module>
@@ -427,7 +424,6 @@
427424
</dependency>
428425
</dependencies>
429426
<properties>
430-
<distMgmtSnapshotsUrl>http://oss.sonatype.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
431427
<surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile>
432428
<source.property>1.8</source.property>
433429
<target.property>1.8</target.property>

0 commit comments

Comments
 (0)