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>
|
2022-11-05 04:40:09 +01:00
|
|
|
<version>1.0.3-SNAPSHOT</version>
|
2017-07-31 11:53:59 +02:00
|
|
|
<name>Blacksmith</name>
|
|
|
|
<description>Blacksmith Character for the CitizensAPI</description>
|
2012-03-21 02:10:32 +01:00
|
|
|
|
2017-07-31 11:53:59 +02:00
|
|
|
<!-- Properties -->
|
|
|
|
<properties>
|
|
|
|
<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-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>
|
|
|
|
<url>http://repo.citizensnpcs.co/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
|
|
|
</repository>
|
2017-07-31 11:53:59 +02:00
|
|
|
</repositories>
|
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>
|
2022-10-03 00:11:39 +02:00
|
|
|
<version>1.19.2-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>
|
|
|
|
<version>23.0.0</version>
|
|
|
|
<scope>compile</scope>
|
2022-02-01 19:52:41 +01:00
|
|
|
</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>
|
2018-10-12 21:00:54 +02:00
|
|
|
<defaultGoal>clean package install</defaultGoal>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2017-07-31 11:53:59 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2021-02-25 16:36:02 +01:00
|
|
|
<version>3.7.0</version>
|
2017-07-31 11:53:59 +02:00
|
|
|
<configuration>
|
2022-10-07 17:14:58 +02:00
|
|
|
<source>16</source>
|
|
|
|
<target>16</target>
|
2017-07-31 11:53:59 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-04-01 22:13:57 +02:00
|
|
|
|
2017-07-31 11:53:59 +02:00
|
|
|
</project>
|