2020-01-30 11:50:29 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-04-10 14:56:47 +00: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/maven-v4_0_0.xsd">
|
2020-01-30 11:50:29 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2023-08-13 14:00:38 +00:00
|
|
|
<groupId>tech.sbdevelopment</groupId>
|
|
|
|
<artifactId>V10Lift</artifactId>
|
2023-08-19 17:57:31 +00:00
|
|
|
<version>0.9</version>
|
2020-03-16 09:38:49 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2020-01-30 11:50:29 +00:00
|
|
|
<name>V10Lift</name>
|
2020-03-16 09:38:49 +00:00
|
|
|
<description>Realistic lifts in Minecraft!</description>
|
2023-08-13 14:00:38 +00:00
|
|
|
<url>https://sbdevelopment.tech</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.lombok.delombok-target>${project.build.directory}/javadoc-delombok</maven.lombok.delombok-target>
|
|
|
|
</properties>
|
2020-01-30 11:50:29 +00:00
|
|
|
|
2020-02-08 11:13:13 +00:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
2023-08-13 14:00:38 +00:00
|
|
|
<id>sbdevelopment-repo</id>
|
|
|
|
<url>https://repo.sbdevelopment.tech/releases</url>
|
2020-02-08 11:13:13 +00:00
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2020-01-30 11:50:29 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2020-02-16 17:54:33 +00:00
|
|
|
<!-- Shade JAR -->
|
2020-01-30 11:50:29 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2023-08-13 14:00:38 +00:00
|
|
|
<version>3.5.0</version>
|
2020-02-21 09:18:59 +00:00
|
|
|
<configuration>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats</pattern>
|
2023-08-13 14:00:38 +00:00
|
|
|
<shadedPattern>tech.sbdevelopment.v10lift.libs.metrics</shadedPattern>
|
2020-07-01 20:44:57 +00:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.zaxxer.hikari</pattern>
|
2023-08-13 14:00:38 +00:00
|
|
|
<shadedPattern>tech.sbdevelopment.v10lift.libs.hikari</shadedPattern>
|
2020-02-21 09:18:59 +00:00
|
|
|
</relocation>
|
2021-04-07 08:41:01 +00:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.cryptomorin.xseries</pattern>
|
2023-08-13 14:00:38 +00:00
|
|
|
<shadedPattern>tech.sbdevelopment.v10lift.libs.xseries</shadedPattern>
|
2021-04-07 08:41:01 +00:00
|
|
|
</relocation>
|
2020-02-21 09:18:59 +00:00
|
|
|
</relocations>
|
2021-04-07 08:41:01 +00:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>com/cryptomorin/xseries/XPotion*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XItemStack*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XEntity*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XEnchantment*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XBlock*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XBiome*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/SkullUtils*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/ReflectionUtils*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/NMSExtras*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/NoteBlockMusic*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/particles/*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/messages/*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2020-02-21 09:18:59 +00:00
|
|
|
</configuration>
|
2020-01-30 11:50:29 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
2020-03-16 09:38:49 +00:00
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
</configuration>
|
2020-01-30 11:50:29 +00:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-06-10 18:36:08 +00:00
|
|
|
|
2020-02-16 17:54:33 +00:00
|
|
|
<!-- Compile JAR -->
|
2020-02-08 09:59:57 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2023-06-11 09:13:39 +00:00
|
|
|
<version>3.11.0</version>
|
2020-02-08 09:59:57 +00:00
|
|
|
<configuration>
|
2021-06-08 14:34:39 +00:00
|
|
|
<release>11</release>
|
2020-02-08 09:59:57 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-06-10 18:36:08 +00:00
|
|
|
|
2020-02-16 17:54:33 +00:00
|
|
|
<!-- Delombok the source for the javadoc -->
|
2020-02-08 10:56:17 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok-maven-plugin</artifactId>
|
2021-06-08 14:34:39 +00:00
|
|
|
<version>1.18.20.0</version>
|
2022-06-10 18:36:08 +00:00
|
|
|
<configuration>
|
|
|
|
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
|
2023-08-13 14:00:38 +00:00
|
|
|
<outputDirectory>${maven.lombok.delombok-target}</outputDirectory>
|
2022-06-10 18:36:08 +00:00
|
|
|
<addOutputDirectory>false</addOutputDirectory>
|
|
|
|
</configuration>
|
2020-02-08 10:56:17 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>delombok</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-06-10 18:36:08 +00:00
|
|
|
|
2020-02-16 17:54:33 +00:00
|
|
|
<!-- Build the javadoc -->
|
2020-02-08 10:56:17 +00:00
|
|
|
<plugin>
|
2022-06-10 18:36:08 +00:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2020-02-08 10:56:17 +00:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2023-09-18 19:51:24 +00:00
|
|
|
<version>3.6.0</version>
|
2020-02-08 10:56:17 +00:00
|
|
|
<configuration>
|
2023-08-13 14:00:38 +00:00
|
|
|
<release>11</release>
|
|
|
|
<sourcepath>${maven.lombok.delombok-target}</sourcepath>
|
2022-06-10 18:36:08 +00:00
|
|
|
<sourceFileExcludes>
|
2023-08-13 19:45:32 +00:00
|
|
|
<exclude>tech/sbdevelopment/v10lift/*.java</exclude>
|
|
|
|
<exclude>tech/sbdevelopment/v10lift/commands/*.java</exclude>
|
|
|
|
<exclude>tech/sbdevelopment/v10lift/listeners/*.java</exclude>
|
|
|
|
<exclude>tech/sbdevelopment/v10lift/sbutils/*.java</exclude>
|
|
|
|
<exclude>tech/sbdevelopment/v10lift/utils/*.java</exclude>
|
2022-06-10 18:36:08 +00:00
|
|
|
</sourceFileExcludes>
|
2020-02-08 10:56:17 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-01-30 11:50:29 +00:00
|
|
|
</plugins>
|
2023-08-13 14:00:38 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2020-01-30 11:50:29 +00:00
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2020-02-21 09:18:59 +00:00
|
|
|
<repository>
|
|
|
|
<id>CodeMC</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public</url>
|
|
|
|
</repository>
|
2020-02-25 09:34:19 +00:00
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2023-08-19 17:57:31 +00:00
|
|
|
<repository>
|
|
|
|
<id>enginehub-maven</id>
|
|
|
|
<url>https://maven.enginehub.org/repo/</url>
|
|
|
|
</repository>
|
2020-01-30 11:50:29 +00:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-02-16 17:54:33 +00:00
|
|
|
<!-- Spigot dependency -->
|
2020-01-30 11:50:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2023-08-13 14:00:38 +00:00
|
|
|
<version>1.20.1-R0.1-SNAPSHOT</version>
|
2021-04-07 08:41:01 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2020-02-16 17:54:33 +00:00
|
|
|
<!-- Lombok, used for the objects -->
|
2020-01-30 11:50:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2023-09-25 19:22:24 +00:00
|
|
|
<version>1.18.30</version>
|
2020-01-30 11:50:29 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-02-16 17:54:33 +00:00
|
|
|
|
2020-02-21 09:18:59 +00:00
|
|
|
<!-- BStats, used for metrics -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
2023-08-13 14:00:38 +00:00
|
|
|
<version>3.0.2</version>
|
2020-02-21 09:18:59 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-02-25 09:34:19 +00:00
|
|
|
|
|
|
|
<!-- Vault, used for permission checks -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.MilkBowl</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
2023-06-11 09:13:55 +00:00
|
|
|
<version>1.7.1</version>
|
2020-02-25 09:34:19 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-07-01 20:44:57 +00:00
|
|
|
|
2021-04-07 08:41:01 +00:00
|
|
|
<!-- XSeries, used for multi version support -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.cryptomorin</groupId>
|
|
|
|
<artifactId>XSeries</artifactId>
|
2023-08-13 14:00:38 +00:00
|
|
|
<version>9.5.0</version>
|
2022-06-10 18:42:32 +00:00
|
|
|
<scope>compile</scope>
|
2020-07-01 20:44:57 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-06-10 18:42:32 +00:00
|
|
|
<!-- HikariCP, used for the database -->
|
2020-07-01 20:44:57 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
2023-06-11 09:13:47 +00:00
|
|
|
<version>5.0.1</version>
|
2022-06-10 18:42:32 +00:00
|
|
|
<scope>compile</scope>
|
2020-07-25 18:31:13 +00:00
|
|
|
</dependency>
|
2023-08-19 17:57:31 +00:00
|
|
|
|
|
|
|
<!-- WorldEdit, optional for creating lifts -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-bukkit</artifactId>
|
|
|
|
<version>7.2.9</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-01-30 11:50:29 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|