1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00

"mavenize"

This commit is contained in:
RoboMWM 2017-07-27 10:21:36 -07:00
parent 43e2d66f36
commit 38e4307ae1
4 changed files with 107 additions and 1 deletions

4
.gitignore vendored
View File

@ -1,4 +1,6 @@
/bin/
.classpath
.project
/.settings/
/.settings/
*.iml
/target

Binary file not shown.

BIN
lib/ExoticGarden v1.6.3.jar Normal file

Binary file not shown.

104
pom.xml Normal file
View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.mrCookieSlime</groupId>
<artifactId>Slimefun</artifactId>
<version>4.1.10</version>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<repositories>
<repository>
<id>paper-repo</id>
<url>https://repo.destroystokyo.com/repository/maven-public/</url>
</repository>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>worldedit-worldguard-repo</id>
<url>http://maven.sk89q.com/repo/</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>clearlag-repo</id>
<url>http://minebuilders.me:8080/job/Clearlag/lastSuccessfulBuild/maven-repository/repository/</url>
</repository>
</repositories>
<build>
<!--Maintain existing structure (as much as possible)-->
<sourceDirectory>${project.basedir}/src</sourceDirectory>
<!--doesn't exist but here if you ever do make such a directory-->
<testSourceDirectory>${project.basedir}/tests/java</testSourceDirectory>
<testResources>
<testResource>
<directory>${project.basedir}/tests/resources</directory>
</testResource>
</testResources>
<finalName>${project.name}</finalName>
<resources>
<resource>
<!-- Use plugin.yml in the src directory-->
<!-- This can also automatically update plugin.yml version from pom, if you use ${project.version} as version number-->
<directory>${basedir}/src</directory>
<filtering>true</filtering>
<includes>
<include>plugin.yml</include>
</includes>
</resource>
</resources>
</build>
<dependencies>
<!--Bukkit API-->
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.12-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-bukkit</artifactId>
<version>6.1.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.github.TheBusyBiscuit</groupId>
<artifactId>CS-CoreLib</artifactId>
<version>240a2bb8aa</version>
</dependency>
<dependency>
<groupId>me.minebuilders</groupId>
<artifactId>clearlag-core</artifactId>
<version>2.9.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>net.coreprotect</groupId>
<artifactId>CoreProtect</artifactId>
<version>2.14.2</version>
<scope>system</scope>
<systemPath>${basedir}/lib/CoreProtect_2.14.2.jar</systemPath>
</dependency>
<dependency>
<groupId>me.mrcookieslime</groupId>
<artifactId>EmeraldEnchants</artifactId>
<version>2.0</version>
<scope>system</scope>
<systemPath>${basedir}/lib/EmeraldEnchants_v2.0.jar</systemPath>
</dependency>
<dependency>
<groupId>me.mrcookieslime</groupId>
<artifactId>ExoticGarden</artifactId>
<version>1.6.3</version>
<scope>system</scope>
<systemPath>${basedir}/lib/ExoticGarden v1.6.3.jar</systemPath>
</dependency>
</dependencies>
</project>