Put non-maven dependencies in lib folder

This commit is contained in:
Eric 2017-04-29 14:21:41 +02:00
parent 4ecbbb417b
commit 0f4f421f76
3 changed files with 15 additions and 17 deletions

BIN
lib/IslandWorld-7.0.jar Normal file

Binary file not shown.

BIN
lib/Towny-0.91.4.0.jar Normal file

Binary file not shown.

32
pom.xml
View File

@ -98,10 +98,6 @@
<id>vault-repo</id>
<url>http://nexus.hc.to/content/repositories/pub_releases/</url>
</repository>
<repository>
<id>epiceric-repo</id>
<url>http://epicericee.github.io/ShopChest/maven/</url>
</repository>
<repository>
<id>bstats-repo</id>
<url>http://repo.bstats.org/content/repositories/releases/</url>
@ -115,7 +111,7 @@
<url>http://maven.sk89q.com/artifactory/repo/</url>
</repository>
<repository>
<id>athion-reop</id>
<id>athion-repo</id>
<url>http://ci.athion.net/job/PlotSquared/ws/mvn/</url>
</repository>
<repository>
@ -151,12 +147,6 @@
<version>6.1.3-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.palmergames</groupId>
<artifactId>Towny</artifactId>
<version>0.91.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
@ -186,18 +176,26 @@
<version>3.0.6.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>pl.gnacik</groupId>
<artifactId>IslandWorld</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.TechFortress</groupId>
<artifactId>GriefPrevention</artifactId>
<version>16.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.palmergames</groupId>
<artifactId>Towny</artifactId>
<version>0.91.4.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Towny-0.91.4.0.jar</systemPath>
</dependency>
<dependency>
<groupId>pl.gnacik</groupId>
<artifactId>IslandWorld</artifactId>
<version>7.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/IslandWorld-7.0.jar</systemPath>
</dependency>
</dependencies>
<distributionManagement>