pom: rename maven-central repositories to central

This is the name maven internally uses. Currently the effective pom
looks like maven-central -> runelite -> central, which doesn't make
sense since maven-central and central are the same. With this, the
effective pom is central -> runelite.
This commit is contained in:
Adam
2021-03-28 18:14:42 -04:00
parent d27cefaeeb
commit d1d5707f1a

15
pom.xml
View File

@@ -84,8 +84,12 @@
<repositories>
<repository>
<id>maven-central</id>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>runelite</id>
@@ -99,8 +103,15 @@
</repositories>
<pluginRepositories>
<pluginRepository>
<id>maven-central-plugins</id>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>runelite-plugins</id>