aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml199
1 files changed, 0 insertions, 199 deletions
diff --git a/pom.xml b/pom.xml
deleted file mode 100644
index 2ac88f45..00000000
--- a/pom.xml
+++ /dev/null
@@ -1,199 +0,0 @@
-<?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.leonardobishop</groupId>
- <artifactId>quests</artifactId>
- <!-- Note to future self: changing the version to something ending with a 0 will truncate it -->
- <version>2.11</version>
- <name>Quests</name>
-
- <properties>
- <release.version>${project.version}</release.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.jar.outputDirectory>target</maven.jar.outputDirectory>
- </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>
-
- <!-- BentoBox -->
- <repository>
- <id>codemc-repo</id>
- <url>https://repo.codemc.org/repository/maven-public/</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>
-
- <!-- Citizens -->
- <repository>
- <id>everything</id>
- <url>http://repo.citizensnpcs.co/</url>
- </repository>
-
- <!-- MythicMobs -->
- <repository>
- <id>mythicmobs</id>
- <url>http://mc.hackerzlair.org:8888/repository/public</url>
- </repository>
-
- <!-- PlaceholderAPI -->
- <repository>
- <id>placeholderapi</id>
- <url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
- </repository>
-
- <!-- JitPack -->
- <repository>
- <id>jitpack.io</id>
- <url>https://jitpack.io</url>
- </repository>
- </repositories>
-
- <dependencies>
- <!-- Spigot API -->
- <dependency>
- <groupId>org.spigotmc</groupId>
- <artifactId>spigot-api</artifactId>
- <version>1.14.4-R0.1-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
-
- <!-- ASkyBlock -->
- <dependency>
- <groupId>com.wasteofplastic</groupId>
- <artifactId>askyblock</artifactId>
- <version>LATEST</version>
- <scope>provided</scope>
- </dependency>
-
- <!-- BentoBox (bSkyBlock) -->
- <dependency>
- <groupId>world.bentobox</groupId>
- <artifactId>bentobox</artifactId>
- <version>LATEST</version>
- <scope>provided</scope>
- </dependency>
-
- <!-- IridiumSkyblock -->
- <dependency>
- <groupId>com.github.IridiumLLC</groupId>
- <artifactId>IridiumSkyblock</artifactId>
- <version>master</version>
- <scope>provided</scope>
- </dependency>
-
- <!-- uSkyBlock -->
- <dependency>
- <groupId>com.github.rlf</groupId>
- <artifactId>uSkyBlock-API</artifactId>
- <version>2.6.4</version>
- <scope>provided</scope>
- </dependency>
-
- <!-- MythicMobs -->
- <dependency>
- <groupId>io.lumine.xikage</groupId>
- <artifactId>mythicmobs</artifactId>
- <version>4.5.7</version>
- <type>jar</type>
- <scope>provided</scope>
- </dependency>
-
- <!-- Citizens -->
- <dependency>
- <groupId>net.citizensnpcs</groupId>
- <artifactId>citizens</artifactId>
- <version>2.0.24-SNAPSHOT</version>
- <type>jar</type>
- <scope>provided</scope>
- </dependency>
-
- <!-- PlaceholderAPI -->
- <dependency>
- <groupId>me.clip</groupId>
- <artifactId>placeholderapi</artifactId>
- <version>2.10.4</version>
- <type>jar</type>
- <scope>provided</scope>
- </dependency>
- </dependencies>
-
- <build>
- <finalName>quests</finalName>
- <sourceDirectory>src/main/java</sourceDirectory>
-
- <resources>
- <resource>
- <directory>${basedir}/src/main/resources/</directory>
- <filtering>false</filtering>
- </resource>
- </resources>
-
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.1</version>
- <configuration>
- <source>8</source>
- <target>8</target>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.8</version>
- <executions>
- <execution>
- <id>replace</id>
- <phase>prepare-package</phase>
- <configuration>
- <target>
- <echo message="Bukkit plugin.yml version is: ${release.version}"/>
- <replace token="%PLUGIN_VERSION%" value="${release.version}" dir="target/classes">
- <include name="**/*.yml"/>
- </replace>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>3.2.0</version>
- <configuration>
- <outputDirectory>${maven.jar.outputDirectory}</outputDirectory>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
-</project> \ No newline at end of file