e85a4c1413
Bumps [maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.3.0 to 3.4.1. - [Release notes](https://github.com/apache/maven-shade-plugin/releases) - [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-3.3.0...maven-shade-plugin-3.4.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-shade-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
233 lines
No EOL
9.1 KiB
XML
233 lines
No EOL
9.1 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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>nl.SBDeveloper</groupId>
|
|
<artifactId>V10Lift2</artifactId>
|
|
<version>0.7.4.1</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>V10Lift</name>
|
|
<description>Realistic lifts in Minecraft!</description>
|
|
<url>sbdplugins.nl</url>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>iobyte-nexus</id>
|
|
<url>https://nexus.iobyte.nl/repository/maven-releases</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<defaultGoal>clean package</defaultGoal>
|
|
<!-- Include yml files -->
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<finalName>V10Lift v${project.version}</finalName>
|
|
<plugins>
|
|
<!-- Shade JAR -->
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.4.1</version>
|
|
<configuration>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>org.bstats</pattern>
|
|
<shadedPattern>nl.SBDeveloper.V10Lift.libs.metrics</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.zaxxer.hikari</pattern>
|
|
<shadedPattern>nl.SBDeveloper.V10Lift.libs.hikari</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.cryptomorin.xseries</pattern>
|
|
<shadedPattern>nl.SBDeveloper.V10Lift.libs.xseries</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
<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>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<!-- Compile JAR -->
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.11.0</version>
|
|
<configuration>
|
|
<release>11</release>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- Delombok the source for the javadoc -->
|
|
<plugin>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok-maven-plugin</artifactId>
|
|
<version>1.18.20.0</version>
|
|
<configuration>
|
|
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
|
|
<outputDirectory>${project.build.directory}/delombok</outputDirectory>
|
|
<addOutputDirectory>false</addOutputDirectory>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>delombok</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<!-- Build the javadoc -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.4.0</version>
|
|
<configuration>
|
|
<sourcepath>${project.build.directory}/delombok</sourcepath>
|
|
|
|
<!-- Exclude all non-API packages -->
|
|
<sourceFileExcludes>
|
|
<exclude>nl/SBDeveloper/V10Lift/*.java</exclude>
|
|
<exclude>nl/SBDeveloper/V10Lift/commands/*.java</exclude>
|
|
<exclude>nl/SBDeveloper/V10Lift/listeners/*.java</exclude>
|
|
<exclude>nl/SBDeveloper/V10Lift/sbutils/*.java</exclude>
|
|
<exclude>nl/SBDeveloper/V10Lift/utils/*.java</exclude>
|
|
</sourceFileExcludes>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- SKIP the maven deploy -->
|
|
<plugin>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- Deploy to nexus -->
|
|
<plugin>
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
<version>1.6.13</version>
|
|
<executions>
|
|
<execution>
|
|
<id>default-deploy</id>
|
|
<phase>deploy</phase>
|
|
<goals>
|
|
<goal>deploy</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<serverId>iobyte-nexus</serverId>
|
|
<nexusUrl>https://nexus.iobyte.nl/</nexusUrl>
|
|
<skipStaging>true</skipStaging>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>CodeMC</id>
|
|
<url>https://repo.codemc.org/repository/maven-public</url>
|
|
</repository>
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!-- Spigot dependency -->
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.19-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Lombok, used for the objects -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.28</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- BStats, used for metrics -->
|
|
<dependency>
|
|
<groupId>org.bstats</groupId>
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
<version>3.0.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- Vault, used for permission checks -->
|
|
<dependency>
|
|
<groupId>com.github.MilkBowl</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
<version>1.7.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- XSeries, used for multi version support -->
|
|
<dependency>
|
|
<groupId>com.github.cryptomorin</groupId>
|
|
<artifactId>XSeries</artifactId>
|
|
<version>8.7.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- HikariCP, used for the database -->
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
<version>5.0.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |