3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus/pom.xml

181 lines
7.2 KiB
XML
Raw Normal View History

2020-04-18 07:01:35 +00:00
<?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>nl.SBDeveloper</groupId>
<artifactId>ThemeParkPlus</artifactId>
2022-05-16 20:16:22 +00:00
<version>3.1.1</version>
2020-04-18 07:01:35 +00:00
<packaging>jar</packaging>
<name>ThemeParkPlus</name>
<description>Plus version of ThemePark!</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<url>https://sbdplugins.nl</url>
<build>
<defaultGoal>clean package</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
2020-04-18 07:01:35 +00:00
<configuration>
2021-07-02 09:12:02 +00:00
<release>11</release>
2020-04-18 07:01:35 +00:00
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2020-08-11 08:17:53 +00:00
<version>3.2.1</version>
2020-04-18 07:01:35 +00:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<relocations>
<relocation>
<pattern>de.tr7zw.changeme.nbtapi</pattern>
2020-08-11 07:01:53 +00:00
<shadedPattern>nl.sbdeveloper.themeparkplus.libs.nbtapi</shadedPattern>
</relocation>
<relocation>
<pattern>org.codemc.worldguardwrapper</pattern>
<shadedPattern>nl.sbdeveloper.themeparkplus.libs.worldguardwrapper</shadedPattern>
2020-04-18 07:01:35 +00:00
</relocation>
2020-08-11 08:17:53 +00:00
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>nl.sbdeveloper.themeparkplus.libs.bstats</shadedPattern>
</relocation>
2020-11-21 12:06:26 +00:00
<relocation>
<pattern>fr.minuskube.inv</pattern>
<shadedPattern>nl.sbdeveloper.themeparkplus.libs.smartinvs</shadedPattern>
2020-11-21 12:06:26 +00:00
</relocation>
2020-04-18 07:01:35 +00:00
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<!-- &lt;!&ndash; Delombok the source for the javadoc &ndash;&gt;-->
<!-- <plugin>-->
<!-- <groupId>org.projectlombok</groupId>-->
<!-- <artifactId>lombok-maven-plugin</artifactId>-->
<!-- <version>1.18.12.0</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <phase>generate-sources</phase>-->
<!-- <goals>-->
<!-- <goal>delombok</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!-- &lt;!&ndash; Build the javadoc &ndash;&gt;-->
<!-- <plugin>-->
<!-- <artifactId>maven-javadoc-plugin</artifactId>-->
<!-- <version>3.2.0</version>-->
<!-- <configuration>-->
<!-- <release>11</release>-->
<!-- <sourceFileIncludes>-->
<!-- <include>nl/sbdeveloper/themeparkplus/api/*.java</include>-->
<!-- <include>nl/sbdeveloper/themeparkplus/api/enums/*.java</include>-->
<!-- <include>nl/sbdeveloper/themeparkplus/api/objects/*.java</include>-->
<!-- </sourceFileIncludes>-->
<!-- </configuration>-->
<!-- </plugin>-->
2020-04-18 07:01:35 +00:00
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
2020-08-11 07:01:53 +00:00
<id>codemc-repo</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
2020-04-18 07:01:35 +00:00
</repository>
<repository>
<id>sk89q-repo</id>
2020-06-03 19:10:49 +00:00
<url>https://maven.enginehub.org/repo/</url>
2020-04-18 07:01:35 +00:00
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2022-05-16 20:12:20 +00:00
<version>1.18.2-R0.1-SNAPSHOT</version>
2020-04-18 07:01:35 +00:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>me.paradoxpixel</groupId>
<artifactId>themepark</artifactId>
<version>3.1.1</version>
2020-04-18 07:01:35 +00:00
<scope>system</scope>
2022-05-16 20:12:20 +00:00
<systemPath>${pom.basedir}/src/lib/ThemePark_v3.1.1.jar</systemPath>
</dependency>
<dependency>
<groupId>me.paradoxpixel</groupId>
<artifactId>parkplusmc</artifactId>
<version>1.4</version>
<scope>system</scope>
<systemPath>${pom.basedir}/src/lib/parkplus-1.4.jar</systemPath>
2020-04-18 07:01:35 +00:00
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
2020-04-18 07:01:35 +00:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api</artifactId>
2022-05-16 20:12:20 +00:00
<version>2.9.2</version>
2020-04-18 07:01:35 +00:00
</dependency>
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>5.0.1</version>
2020-06-03 19:10:49 +00:00
</dependency>
2020-06-16 08:23:39 +00:00
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>2.2.1</version>
2020-06-16 08:23:39 +00:00
<scope>compile</scope>
</dependency>
2020-08-11 07:01:53 +00:00
<dependency>
<groupId>org.codemc.worldguardwrapper</groupId>
<artifactId>worldguardwrapper</artifactId>
<version>1.2.0-SNAPSHOT</version>
2020-08-11 07:01:53 +00:00
</dependency>
2020-11-21 12:06:26 +00:00
<dependency>
<groupId>fr.minuskube.inv</groupId>
<artifactId>smart-invs</artifactId>
<version>1.2.7</version>
2020-11-21 12:06:26 +00:00
</dependency>
2020-04-18 07:01:35 +00:00
</dependencies>
</project>