Updates commons pom file to allow per version development

... without the need to have all spigot versions in your local Maven repo
This commit is contained in:
Jitse Boonstra 2019-05-05 18:10:21 +02:00
parent 1dbe797e01
commit 39192ba48c
1 changed files with 14 additions and 1 deletions

View File

@ -27,12 +27,25 @@
</build>
-->
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<artifactId>spigot-api</artifactId>
<version>1.13.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.33.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>