2022-08-05 00:34:54 +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">
|
2016-10-09 10:59:43 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<!-- Parent -->
|
2022-08-05 00:34:54 +02:00
|
|
|
<!--<parent>
|
2016-10-09 10:59:43 +02:00
|
|
|
<groupId>com.massivecraft.massivesuper</groupId>
|
|
|
|
<artifactId>MassiveSuper</artifactId>
|
2021-05-23 13:56:13 +02:00
|
|
|
<version>3.3.3</version>
|
2016-10-09 10:59:43 +02:00
|
|
|
<relativePath>../MassiveSuper</relativePath>
|
2022-08-05 00:34:54 +02:00
|
|
|
</parent>-->
|
2016-10-09 10:59:43 +02:00
|
|
|
|
|
|
|
<!-- Basics -->
|
2022-08-05 00:34:54 +02:00
|
|
|
<groupId>net.knarcraft</groupId>
|
2016-10-09 10:59:43 +02:00
|
|
|
<artifactId>Factions</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<!-- Info -->
|
2022-08-05 00:34:54 +02:00
|
|
|
<url>https://git.knarcraft.net</url>
|
2016-10-09 10:59:43 +02:00
|
|
|
<name>${project.artifactId}</name>
|
2022-08-05 00:34:54 +02:00
|
|
|
<description>${project.name} allows the players to team up and claim land as their own and start wars with other
|
|
|
|
factions. This way we hope to inspire politics, intrigue, and team spirit.
|
|
|
|
</description>
|
|
|
|
<!--<url>${massiveBaseUrl}/factions</url>-->
|
|
|
|
<version>3.3.3</version>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigotmc-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>engine-hub-repo</id>
|
|
|
|
<url>https://maven.enginehub.org/repo/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>dynmap</id>
|
|
|
|
<url>https://repo.mikeprimm.com/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>placeholderapi</id>
|
|
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2016-10-09 10:59:43 +02:00
|
|
|
|
|
|
|
<!-- Dependencies -->
|
|
|
|
<dependencies>
|
|
|
|
<!-- Spigot -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2022-08-05 00:34:54 +02:00
|
|
|
<version>1.19.1-R0.1-SNAPSHOT</version>
|
2016-10-09 10:59:43 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- MassiveCore -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.massivecraft.massivecore</groupId>
|
|
|
|
<artifactId>MassiveCore</artifactId>
|
2022-08-05 00:34:54 +02:00
|
|
|
<version>RELEASE</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>lib\MassiveCore.jar</systemPath>
|
2016-10-09 10:59:43 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- WorldEdit -->
|
2018-12-22 11:35:46 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-core</artifactId>
|
2022-08-05 00:34:54 +02:00
|
|
|
<version>7.2.7</version>
|
2018-12-22 11:35:46 +01:00
|
|
|
</dependency>
|
2016-10-09 10:59:43 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-bukkit</artifactId>
|
2022-08-05 00:34:54 +02:00
|
|
|
<version>7.2.7</version>
|
2016-10-09 10:59:43 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- WorldGuard -->
|
2018-12-22 11:35:46 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
|
|
<artifactId>worldguard-core</artifactId>
|
2022-08-05 00:34:54 +02:00
|
|
|
<version>RELEASE</version>
|
2018-12-22 11:35:46 +01:00
|
|
|
</dependency>
|
2016-10-09 10:59:43 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldguard</groupId>
|
2020-12-16 19:32:55 +01:00
|
|
|
<artifactId>worldguard-bukkit</artifactId>
|
2022-08-05 00:34:54 +02:00
|
|
|
<version>RELEASE</version>
|
2016-10-09 10:59:43 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- Vault -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
2022-08-05 00:34:54 +02:00
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.7</version>
|
2016-10-09 10:59:43 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- LWC -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.griefcraft</groupId>
|
|
|
|
<artifactId>lwc</artifactId>
|
2022-08-05 00:34:54 +02:00
|
|
|
<version>RELEASE</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>lib\LWC.jar</systemPath>
|
2016-10-09 10:59:43 +02:00
|
|
|
</dependency>
|
2019-01-20 00:19:00 +01:00
|
|
|
<!-- PlaceholderAPI -->
|
|
|
|
<dependency>
|
2022-08-05 00:34:54 +02:00
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.11.2</version>
|
|
|
|
<scope>provided</scope>
|
2019-01-20 00:19:00 +01:00
|
|
|
</dependency>
|
2019-01-25 15:52:52 +01:00
|
|
|
<!-- MineverseChat/VentureChat -->
|
|
|
|
<dependency>
|
2022-08-05 00:34:54 +02:00
|
|
|
<groupId>mineverse.Aust1n46.chat</groupId>
|
|
|
|
<artifactId>VentureChat</artifactId>
|
|
|
|
<version>RELEASE</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>lib\VentureChat.jar</systemPath>
|
2019-01-25 15:52:52 +01:00
|
|
|
</dependency>
|
2020-01-19 14:43:20 +01:00
|
|
|
<!-- Dynmap -->
|
|
|
|
<dependency>
|
2022-08-05 00:34:54 +02:00
|
|
|
<groupId>us.dynmap</groupId>
|
|
|
|
<artifactId>dynmap-api</artifactId>
|
|
|
|
<version>3.1-beta-2</version>
|
2020-01-19 14:43:20 +01:00
|
|
|
</dependency>
|
2016-10-09 10:59:43 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<!-- Build -->
|
|
|
|
<build>
|
2022-08-05 00:34:54 +02:00
|
|
|
<defaultGoal>clean package install</defaultGoal>
|
2016-10-09 10:59:43 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<filtering>true</filtering>
|
2022-08-05 00:34:54 +02:00
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
2016-10-09 10:59:43 +02:00
|
|
|
<includes>
|
|
|
|
<include>*.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2022-08-05 00:34:54 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.7.0</version>
|
|
|
|
<configuration>
|
|
|
|
<source>17</source>
|
|
|
|
<target>17</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2016-10-09 10:59:43 +02:00
|
|
|
</build>
|
2018-12-18 15:29:15 +01:00
|
|
|
|
2016-10-09 10:59:43 +02:00
|
|
|
</project>
|