You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
3.8 KiB
XML
107 lines
3.8 KiB
XML
5 months ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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>
|
||
|
|
||
|
<groupId>cn.isekai.mcp</groupId>
|
||
|
<artifactId>isekai-world-guard-flags</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>17</maven.compiler.source>
|
||
|
<maven.compiler.target>15</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<spigot.version>1.18-R0.1-SNAPSHOT</spigot.version>
|
||
|
<worldGuard.version>7.0.6</worldGuard.version>
|
||
|
</properties>
|
||
|
|
||
|
<build>
|
||
|
<finalName>isekai-world-guard-flags</finalName>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources/</directory>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
|
||
|
<plugins>
|
||
|
<!-- Clean the target folder content -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-clean-plugin</artifactId>
|
||
|
<version>3.2.0</version>
|
||
|
</plugin>
|
||
|
<!-- Include resource files -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-resources-plugin</artifactId>
|
||
|
<version>3.3.0</version>
|
||
|
</plugin>
|
||
|
<!-- Maven Java compiler -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.6.0</version>
|
||
|
<configuration>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<!-- Generate a jar containing classes and resources -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>3.3.0</version>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>spigot-repo</id>
|
||
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>sk89q-repo</id>
|
||
|
<url>https://maven.enginehub.org/repo/</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>dmulloy2-repo</id>
|
||
|
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>CodeMC</id>
|
||
|
<url>https://repo.codemc.org/repository/maven-public</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- Spigot API, http://www.spigotmc.org/ or http://bukkit.org/ -->
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-api</artifactId>
|
||
|
<version>${spigot.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.sk89q.worldguard</groupId>
|
||
|
<artifactId>worldguard-core</artifactId>
|
||
|
<version>${worldGuard.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.sk89q.worldguard</groupId>
|
||
|
<artifactId>worldguard-bukkit</artifactId>
|
||
|
<version>${worldGuard.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.18.24</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|