2021-07-16 20:13: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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>net.coreprotect</groupId>
|
|
|
|
<artifactId>CoreProtect</artifactId>
|
2022-03-21 23:45:42 +01:00
|
|
|
<version>21.2</version>
|
2021-07-16 20:13:54 +02:00
|
|
|
<properties>
|
|
|
|
<project.branch></project.branch>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
2022-02-26 00:53:05 +01:00
|
|
|
<source>11</source>
|
|
|
|
<target>11</target>
|
2021-07-16 20:13:54 +02:00
|
|
|
</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>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*:*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
<exclude>**/*.c</exclude>
|
|
|
|
<exclude>META-INF/maven/**</exclude>
|
|
|
|
<exclude>META-INF/services/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats</pattern>
|
|
|
|
<shadedPattern>net.coreprotect</shadedPattern>
|
|
|
|
</relocation>
|
2021-11-16 01:57:33 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.zaxxer</pattern>
|
|
|
|
<shadedPattern>net.coreprotect</shadedPattern>
|
|
|
|
</relocation>
|
2021-07-16 20:13:54 +02:00
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>paper-repo</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>codemc-repo</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
2021-07-17 00:25:24 +02:00
|
|
|
<id>enginehub-repo</id>
|
|
|
|
<url>https://maven.enginehub.org/repo/</url>
|
2021-07-16 20:13:54 +02:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
2021-08-07 02:40:21 +02:00
|
|
|
<!--
|
2021-08-02 00:36:17 +02:00
|
|
|
paper-api (<= 1.16): com.destroystokyo.paper
|
|
|
|
spigot-api: org.spigotmc
|
2021-08-07 02:40:21 +02:00
|
|
|
bukkit: org.bukkit
|
2021-08-02 00:36:17 +02:00
|
|
|
-->
|
2021-07-16 20:13:54 +02:00
|
|
|
<dependency>
|
2021-08-02 00:36:17 +02:00
|
|
|
<groupId>io.papermc.paper</groupId>
|
|
|
|
<artifactId>paper-api</artifactId>
|
2022-03-03 23:22:37 +01:00
|
|
|
<version>1.18.1-R0.1-SNAPSHOT</version>
|
2021-07-16 20:13:54 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit-lite</artifactId>
|
|
|
|
<version>1.8</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-bukkit</artifactId>
|
|
|
|
<version>7.0.0-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2021-11-16 01:57:33 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
<version>4.0.3</version>
|
|
|
|
</dependency>
|
2021-07-16 20:13:54 +02:00
|
|
|
</dependencies>
|
2021-08-07 02:40:21 +02:00
|
|
|
</project>
|