Browse Source

Add Sonatype OSSRH snapshots repositories

Otherwise
  - JDT Core 1.9.8-SNAPSHOT (classic OSSRH snapshot URL)
  - AspectJ Maven Plugin 1.13-SNAPSHOT (new OSSRH snapshot URL)
cannot be found

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
tags/V1_9_8_RC1
Alexander Kriegisch 2 years ago
parent
commit
1980df92d8
1 changed files with 28 additions and 0 deletions
  1. 28
    0
      pom.xml

+ 28
- 0
pom.xml View File

@@ -82,6 +82,34 @@
<updatePolicy>never</updatePolicy>
</releases>
</repository>
<repository>
<id>ossrh-snapshots-classic</id>
<name>Sonatype OSSRH snapshots classic</name>
<url>https://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-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>
</repositories>

<pluginRepositories>

Loading…
Cancel
Save