2021-09-20 13:48:03 +02:00
|
|
|
<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>
|
2021-02-07 03:37:25 +01:00
|
|
|
|
2021-09-20 13:48:03 +02:00
|
|
|
<groupId>net.knarcraft</groupId>
|
|
|
|
<artifactId>Stargate</artifactId>
|
2022-11-26 17:00:04 +01:00
|
|
|
<version>0.9.4.3-SNAPSHOT</version>
|
2021-02-07 03:37:25 +01:00
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GNU Lesser General Public License</name>
|
|
|
|
<url>https://www.gnu.org/licenses/lgpl-3.0.en.html</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
2021-09-20 13:48:03 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2022-11-07 09:57:32 +01:00
|
|
|
<java.version>16</java.version>
|
2021-09-20 13:48:03 +02:00
|
|
|
</properties>
|
2021-02-07 03:37:25 +01:00
|
|
|
|
2021-09-20 13:48:03 +02:00
|
|
|
<repositories>
|
2022-11-26 04:05:03 +01:00
|
|
|
<repository>
|
2022-11-26 15:34:34 +01:00
|
|
|
<id>knarcraft-repo</id>
|
2022-11-26 04:05:03 +01:00
|
|
|
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
|
|
|
|
</repository>
|
2021-09-20 13:48:03 +02:00
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
2022-11-14 00:45:31 +00:00
|
|
|
<url>https://nexus.hc.to/content/repositories/pub_releases</url>
|
2021-09-20 13:48:03 +02:00
|
|
|
</repository>
|
2022-06-18 16:05:05 +02:00
|
|
|
<repository>
|
|
|
|
<id>dynmap</id>
|
|
|
|
<url>https://repo.mikeprimm.com/</url>
|
|
|
|
</repository>
|
2022-11-14 00:45:31 +00:00
|
|
|
<repository>
|
|
|
|
<id>papermc</id>
|
|
|
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
|
|
|
</repository>
|
2021-09-20 13:48:03 +02:00
|
|
|
</repositories>
|
2022-11-26 15:34:34 +01:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>knarcraft-repo</id>
|
|
|
|
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>knarcraft-repo</id>
|
|
|
|
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2021-02-07 03:37:25 +01:00
|
|
|
|
2021-09-20 13:48:03 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2022-10-09 10:46:49 +02:00
|
|
|
<version>1.19.2-R0.1-SNAPSHOT</version>
|
2022-11-07 09:57:32 +01:00
|
|
|
<scope>provided</scope>
|
2021-09-20 13:48:03 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.7</version>
|
2022-11-07 09:57:32 +01:00
|
|
|
<scope>provided</scope>
|
2021-09-20 13:48:03 +02:00
|
|
|
</dependency>
|
2021-02-09 21:11:22 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
2022-11-14 00:45:31 +00:00
|
|
|
<version>5.9.0</version>
|
2021-02-09 21:11:22 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.seeseemelk</groupId>
|
2022-01-15 21:59:46 +01:00
|
|
|
<artifactId>MockBukkit-v1.18</artifactId>
|
2022-11-14 00:45:31 +00:00
|
|
|
<version>2.85.2</version>
|
2021-02-09 21:11:22 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-02-12 00:24:27 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
2022-11-14 00:45:31 +00:00
|
|
|
<version>23.0.0</version>
|
2022-11-07 09:57:32 +01:00
|
|
|
<scope>provided</scope>
|
2021-02-12 00:24:27 +01:00
|
|
|
</dependency>
|
2021-09-20 13:48:03 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2022-02-08 18:44:44 +01:00
|
|
|
<version>4.13.2</version>
|
2021-09-20 13:48:03 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-06-18 16:05:05 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>us.dynmap</groupId>
|
|
|
|
<artifactId>dynmap-api</artifactId>
|
|
|
|
<version>3.1-beta-2</version>
|
2022-11-07 09:57:32 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.knarcraft</groupId>
|
|
|
|
<artifactId>knarlib</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
2022-06-18 16:05:05 +02:00
|
|
|
</dependency>
|
2021-09-20 13:48:03 +02:00
|
|
|
</dependencies>
|
2021-02-07 03:37:25 +01:00
|
|
|
|
2021-09-20 13:48:03 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2022-11-14 00:45:31 +00:00
|
|
|
<version>3.8.1</version>
|
2021-09-20 13:48:03 +02:00
|
|
|
<configuration>
|
2022-11-07 09:57:32 +01:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2021-09-20 13:48:03 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-11-07 09:57:32 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>net.knarcraft:knarlib</artifact>
|
|
|
|
<includes>
|
|
|
|
<include>net/knarcraft/knarlib/**</include>
|
|
|
|
</includes>
|
|
|
|
</filter>
|
|
|
|
<filter>
|
|
|
|
<excludes>
|
|
|
|
<exclude>*.MF</exclude>
|
|
|
|
<exclude>*.yml</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2021-09-20 13:48:03 +02:00
|
|
|
</plugins>
|
2022-11-14 00:45:31 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2021-09-20 13:48:03 +02:00
|
|
|
</build>
|
2015-01-27 04:08:08 -08:00
|
|
|
</project>
|