136 lines
4.5 KiB
XML
136 lines
4.5 KiB
XML
<?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>net.t2code</groupId>
|
|
<artifactId>T2C-AllayDuplicate</artifactId>
|
|
<version>1.3</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>T2C AllayDuplicate</name>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
<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>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<repositories>
|
|
<!-- repo.t2code / T2Code -->
|
|
<repository>
|
|
<id>Builders-Paradise</id>
|
|
<url>https://repo.t2code.net/repository/Builders-Paradise/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>T2Code</id>
|
|
<url>https://repo.t2code.net/repository/T2Code/</url>
|
|
</repository>
|
|
<!-- WorldGuard
|
|
<repository>
|
|
<id>sk89q-repo</id>
|
|
<url>https://maven.enginehub.org/repo/</url>
|
|
</repository> -->
|
|
<!-- Lands -->
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
<!-- FAWE API -->
|
|
<repository>
|
|
<id>enginehub-maven</id>
|
|
<url>https://maven.enginehub.org/repo/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!-- repo.t2code / T2Code -->
|
|
<dependency>
|
|
<groupId>net.t2code.minecraft.1_19.r1</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.19r1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.t2code</groupId>
|
|
<artifactId>T2CodeLib</artifactId>
|
|
<version>DEV-13.0</version>
|
|
<classifier>dev-5</classifier>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.t2code.plotsquared</groupId>
|
|
<artifactId>plotsquared</artifactId>
|
|
<version>6.9.2</version>
|
|
</dependency>
|
|
<!-- Lands -->
|
|
<dependency>
|
|
<groupId>com.github.angeschossen</groupId>
|
|
<artifactId>LandsAPI</artifactId>
|
|
<version>6.5.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- FAWE API -->
|
|
<dependency>
|
|
<groupId>com.fastasyncworldedit</groupId>
|
|
<artifactId>FastAsyncWorldEdit-Core</artifactId>
|
|
<version>2.4.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fastasyncworldedit</groupId>
|
|
<artifactId>FastAsyncWorldEdit-Bukkit</artifactId>
|
|
<version>2.4.1</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>FastAsyncWorldEdit-Core</artifactId>
|
|
<groupId>*</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- WorldGuard
|
|
<dependency>
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
<artifactId>worldguard-bukkit</artifactId>
|
|
<version>7.0.7</version>
|
|
<scope>provided</scope>
|
|
</dependency> -->
|
|
</dependencies>
|
|
</project>
|