2012-03-21 02:10:32 +01:00
|
|
|
<!-- Blacksmith build file -->
|
|
|
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2017-07-31 11:53:59 +02:00
|
|
|
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>
|
2012-03-21 02:10:32 +01:00
|
|
|
|
2022-07-19 02:41:01 +02:00
|
|
|
<groupId>net.knarcraft</groupId>
|
2017-07-31 11:53:59 +02:00
|
|
|
<artifactId>blacksmith</artifactId>
|
2023-01-11 14:56:30 +01:00
|
|
|
<version>1.0.4-SNAPSHOT</version>
|
2017-07-31 11:53:59 +02:00
|
|
|
<name>Blacksmith</name>
|
2022-11-07 00:22:03 +01:00
|
|
|
<description>Blacksmith NPC for the Citizens API</description>
|
2012-03-21 02:10:32 +01:00
|
|
|
|
2017-07-31 11:53:59 +02:00
|
|
|
<!-- Properties -->
|
|
|
|
<properties>
|
2022-11-07 00:07:32 +01:00
|
|
|
<java.version>16</java.version>
|
2017-07-31 11:53:59 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<build.number>Unknown</build.number>
|
|
|
|
</properties>
|
2012-03-21 02:10:32 +01:00
|
|
|
|
2017-07-31 11:53:59 +02:00
|
|
|
<!-- Repositories -->
|
|
|
|
<repositories>
|
2022-11-26 04:13:41 +01:00
|
|
|
<repository>
|
2022-11-26 15:37:14 +01:00
|
|
|
<id>knarcraft-repo</id>
|
2022-11-26 04:13:41 +01:00
|
|
|
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
|
|
|
|
</repository>
|
2022-02-01 19:52:41 +01:00
|
|
|
<repository>
|
2017-07-31 11:53:59 +02:00
|
|
|
<id>spigot-repo</id>
|
2021-02-25 16:36:02 +01:00
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2022-02-01 19:52:41 +01:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>citizens-repo</id>
|
2022-11-14 02:44:18 +01:00
|
|
|
<url>https://repo.citizensnpcs.co/</url>
|
2022-02-01 19:52:41 +01:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
2022-11-14 02:44:18 +01:00
|
|
|
<url>https://nexus.hc.to/content/repositories/pub_releases</url>
|
2022-02-01 19:52:41 +01:00
|
|
|
</repository>
|
2023-01-14 15:10:40 +01:00
|
|
|
<repository>
|
|
|
|
<id>papermc</id>
|
|
|
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
|
|
|
</repository>
|
2017-07-31 11:53:59 +02:00
|
|
|
</repositories>
|
2022-11-26 04:13:41 +01:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
2022-11-26 15:37:14 +01:00
|
|
|
<id>knarcraft-repo</id>
|
2022-11-26 04:13:41 +01:00
|
|
|
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
2022-11-26 15:37:14 +01:00
|
|
|
<id>knarcraft-repo</id>
|
2022-11-26 04:13:41 +01:00
|
|
|
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2012-03-21 02:10:32 +01:00
|
|
|
|
2017-07-31 11:53:59 +02:00
|
|
|
<!-- Dependencies -->
|
|
|
|
<dependencies>
|
2021-02-25 18:49:27 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.citizensnpcs</groupId>
|
2022-10-07 17:14:58 +02:00
|
|
|
<artifactId>citizens-main</artifactId>
|
|
|
|
<version>2.0.30-SNAPSHOT</version>
|
2021-02-25 18:49:27 +01:00
|
|
|
<type>jar</type>
|
2022-10-07 17:14:58 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-02-25 18:49:27 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2023-01-09 05:06:33 +01:00
|
|
|
<version>1.19.3-R0.1-SNAPSHOT</version>
|
2021-02-25 18:49:27 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-07-31 11:53:59 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>Vault</artifactId>
|
2022-10-07 17:14:58 +02:00
|
|
|
<version>1.7.3</version>
|
2017-07-31 11:53:59 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-02-01 19:52:41 +01:00
|
|
|
<dependency>
|
2022-08-05 17:07:16 +02:00
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
2023-01-09 05:06:33 +01:00
|
|
|
<version>23.1.0</version>
|
2022-11-07 00:07:32 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.knarcraft</groupId>
|
|
|
|
<artifactId>knarlib</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2022-08-05 17:07:16 +02:00
|
|
|
<scope>compile</scope>
|
2022-02-01 19:52:41 +01:00
|
|
|
</dependency>
|
2023-01-14 15:10:40 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<version>5.9.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.seeseemelk</groupId>
|
|
|
|
<artifactId>MockBukkit-v1.19</artifactId>
|
|
|
|
<version>2.144.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-07-31 11:53:59 +02:00
|
|
|
</dependencies>
|
2012-03-21 02:10:32 +01:00
|
|
|
|
2017-07-31 11:53:59 +02:00
|
|
|
<!-- Build information -->
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2022-11-07 00:07:32 +01:00
|
|
|
<version>3.8.1</version>
|
2017-07-31 11:53:59 +02:00
|
|
|
<configuration>
|
2022-11-07 00:07:32 +01:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2017-07-31 11:53:59 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-11-07 00:07: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>
|
2017-07-31 11:53:59 +02:00
|
|
|
</plugins>
|
2022-11-07 00:07:32 +01:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2017-07-31 11:53:59 +02:00
|
|
|
</build>
|
2012-04-01 22:13:57 +02:00
|
|
|
|
2017-07-31 11:53:59 +02:00
|
|
|
</project>
|