Blacksmith/pom.xml

159 lines
5.6 KiB
XML
Raw Normal View History

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"
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>
<artifactId>blacksmith</artifactId>
2023-11-12 19:08:27 +01:00
<version>1.0.5</version>
<name>Blacksmith</name>
<description>Blacksmith NPC for the Citizens API</description>
2012-03-21 02:10:32 +01:00
<!-- Properties -->
<properties>
2022-11-07 00:07:32 +01:00
<java.version>16</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<build.number>Unknown</build.number>
</properties>
2012-03-21 02:10:32 +01:00
<!-- Repositories -->
<repositories>
<repository>
2022-11-26 15:37:14 +01:00
<id>knarcraft-repo</id>
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
</repository>
<repository>
<id>spigot-repo</id>
2021-02-25 16:36:02 +01:00
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>citizens-repo</id>
<url>https://repo.citizensnpcs.co/</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
2023-01-14 15:10:40 +01:00
<repository>
<id>papermc</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
</repositories>
<distributionManagement>
<repository>
2022-11-26 15:37:14 +01:00
<id>knarcraft-repo</id>
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
</repository>
<snapshotRepository>
2022-11-26 15:37:14 +01:00
<id>knarcraft-repo</id>
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
</snapshotRepository>
</distributionManagement>
2012-03-21 02:10:32 +01:00
<!-- Dependencies -->
<dependencies>
2021-02-25 18:49:27 +01:00
<dependency>
<groupId>net.citizensnpcs</groupId>
<artifactId>citizens-main</artifactId>
<version>2.0.30-SNAPSHOT</version>
2021-02-25 18:49:27 +01:00
<type>jar</type>
<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>
<version>1.20.1-R0.1-SNAPSHOT</version>
2021-02-25 18:49:27 +01:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.0.1</version>
2022-11-07 00:07:32 +01:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.knarcraft</groupId>
<artifactId>knarlib</artifactId>
<version>1.2.3</version>
<scope>compile</scope>
</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.145.0</version>
2023-01-14 15:10:40 +01:00
<scope>test</scope>
</dependency>
</dependencies>
2012-03-21 02:10:32 +01: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>
<configuration>
2022-11-07 00:07:32 +01:00
<source>${java.version}</source>
<target>${java.version}</target>
</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>
</plugins>
2022-11-07 00:07:32 +01:00
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
2012-04-01 22:13:57 +02:00
</project>