Browse Source

Remove redundant OSSRH snapshot repositories

Background: When only consuming dependencies or plugins from OSSRH
snapshots, there is no need to differentiate between the classic and
new URLs. This is only relevant when deploying snapshots, i.e. in the
'distributionManagement' POM section.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
tags/V1_9_8_RC3
Alexander Kriegisch 2 years ago
parent
commit
904056b5f1
1 changed files with 5 additions and 33 deletions
  1. 5
    33
      pom.xml

+ 5
- 33
pom.xml View File

@@ -68,22 +68,8 @@
</releases>
</repository>
<repository>
<id>aspectj-dev</id>
<name>AspectJ artifacts on aspectj.dev</name>
<url>https://aspectj.dev/maven</url>
<layout>default</layout>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
</repository>
<repository>
<id>ossrh-snapshots-classic</id>
<name>Sonatype OSSRH snapshots classic</name>
<id>ossrh-snapshots</id>
<name>Sonatype OSSRH snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<layout>default</layout>
<snapshots>
@@ -96,23 +82,9 @@
</releases>
</repository>
<repository>
<id>ossrh-snapshots-new</id>
<name>Sonatype OSSRH snapshots new</name>
<url> https://s01.oss.sonatype.org/content/repositories/snapshots</url>
<layout>default</layout>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
</repository>
<repository>
<id>ossrh-snapshots</id>
<name>Sonatype OSSRH snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<id>aspectj-dev</id>
<name>AspectJ artifacts on aspectj.dev</name>
<url>https://aspectj.dev/maven</url>
<layout>default</layout>
<snapshots>
<enabled>true</enabled>

Loading…
Cancel
Save