Factions3/pom.xml

154 lines
5.3 KiB
XML
Raw Normal View History

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>
<!-- Basics -->
<groupId>com.massivecraft.factions</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>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
2022-08-05 00:34:54 +02:00
</properties>
<repositories>
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
2022-08-05 00:34:54 +02:00
</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>
2023-06-23 21:07:44 +02:00
<version>1.20.1-R0.1-SNAPSHOT</version>
2016-10-09 10:59:43 +02:00
</dependency>
<!-- MassiveCore -->
<dependency>
<groupId>com.massivecraft.massivecore</groupId>
<artifactId>MassiveCore</artifactId>
2023-04-01 15:21:24 +02:00
<version>3.3.3</version>
<scope>compile</scope>
2016-10-09 10:59:43 +02:00
</dependency>
<!-- WorldEdit -->
<dependency>
<groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-core</artifactId>
2022-08-05 00:34:54 +02:00
<version>7.2.7</version>
</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 -->
<dependency>
<groupId>com.sk89q.worldguard</groupId>
<artifactId>worldguard-core</artifactId>
2023-04-01 15:21:24 +02:00
<version>7.0.5</version>
</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>
2023-04-01 15:21:24 +02:00
<version>7.0.5</version>
2016-10-09 10:59:43 +02:00
</dependency>
<!-- Vault -->
<dependency>
<groupId>com.github.MilkBowl</groupId>
2022-08-05 00:34:54 +02:00
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
2016-10-09 10:59:43 +02:00
</dependency>
<!-- LWC -->
<dependency>
<groupId>com.griefcraft</groupId>
<artifactId>lwc</artifactId>
2023-04-01 15:21:24 +02:00
<version>2.2.8-f367129</version>
2022-08-05 00:34:54 +02:00
<scope>system</scope>
2023-04-01 15:21:24 +02:00
<systemPath>${project.basedir}\lib\LWCX-2.2.8.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>
<!-- MineverseChat/VentureChat -->
<dependency>
2022-08-05 00:34:54 +02:00
<groupId>mineverse.Aust1n46.chat</groupId>
<artifactId>VentureChat</artifactId>
2023-04-01 15:21:24 +02:00
<version>3.4.1_1.19_patch</version>
2022-08-05 00:34:54 +02:00
<scope>system</scope>
<systemPath>${project.basedir}\lib\VentureChat.jar</systemPath>
</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>
<dependency>
<groupId>me.crafter.mc</groupId>
<artifactId>lockettepro</artifactId>
<version>2.10-SNAPSHOT</version>
</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>16</source>
<target>16</target>
2022-08-05 00:34:54 +02:00
</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>