aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml113
1 files changed, 113 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 00000000..8becaf90
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,113 @@
+<?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>com.fatpigsarefat</groupId>
+ <artifactId>quests</artifactId>
+ <version>2.0.11</version>
+ <name>Quests</name>
+
+ <properties>
+ <release.version>${version}-beta</release.version>
+ </properties>
+
+ <repositories>
+ <!-- Spigot -->
+ <repository>
+ <id>spigot-repo</id>
+ <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
+ </repository>
+
+ <!-- ASkyBlock -->
+ <repository>
+ <id>bintray-tastybento-maven-repo</id>
+ <name>bintray</name>
+ <url>http://dl.bintray.com/tastybento/maven-repo</url>
+ </repository>
+
+ <!-- uSkyBlock -->
+ <repository>
+ <id>uSkyBlock-mvn-repo</id>
+ <url>https://raw.github.com/rlf/uSkyBlock/mvn-repo/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>always</updatePolicy>
+ </snapshots>
+ </repository>
+ </repositories>
+
+ <dependencies>
+ <!-- Spigot API -->
+ <dependency>
+ <groupId>org.spigotmc</groupId>
+ <artifactId>spigot-api</artifactId>
+ <version>1.12.2-R0.1-SNAPSHOT</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- ASkyBlock -->
+ <dependency>
+ <groupId>com.wasteofplastic</groupId>
+ <artifactId>askyblock</artifactId>
+ <version>LATEST</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- uSkyBlock -->
+ <dependency>
+ <groupId>com.github.rlf</groupId>
+ <artifactId>uSkyBlock-API</artifactId>
+ <version>2.6.4</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <finalName>quests</finalName>
+ <sourceDirectory>src/main/java</sourceDirectory>
+
+ <resources>
+ <resource>
+ <directory>${basedir}/src/main/resources/</directory>
+ <includes>
+ <include>*.yml</include>
+ </includes>
+ </resource>
+ </resources>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>8</source>
+ <target>8</target>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>replace</id>
+ <phase>prepare-package</phase>
+ <configuration>
+ <tasks>
+ <echo message="Bukkit plugin.yml version is: ${release.version}"/>
+ <replace token="%PLUGIN_VERSION%" value="${release.version}" dir="target/classes">
+ <include name="**/*.yml"/>
+ </replace>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project> \ No newline at end of file