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.
ThemeParkConnector/pom.xml

113 lines
4.1 KiB
XML
Raw Normal View History

2021-06-19 17:46:54 +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>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<groupId>nl.iobyte</groupId>
<artifactId>themeparkconnector</artifactId>
2022-04-27 21:37:35 +00:00
<version>3.1.0</version>
2021-06-19 17:46:54 +00:00
<repositories>
<repository>
<id>vault-repo</id>
2022-01-08 12:15:03 +00:00
<url>https://nexus.hc.to/content/repositories/pub_releases</url>
2021-06-19 17:46:54 +00:00
</repository>
<repository>
<id>codemc-repo</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
<layout>default</layout>
</repository>
2022-01-08 12:15:03 +00:00
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/public</url>
</repository>
2021-06-19 17:46:54 +00:00
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2022-01-08 12:15:03 +00:00
<version>1.14.4-R0.1-SNAPSHOT</version>
2021-06-19 17:46:54 +00:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.socket</groupId>
<artifactId>socket.io-client</artifactId>
2022-01-08 12:15:03 +00:00
<!--suppress MavenPackageUpdate -->
2021-06-19 17:46:54 +00:00
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>nl.iobyte</groupId>
<artifactId>themepark</artifactId>
2022-04-27 21:37:35 +00:00
<version>3.1.1</version>
2021-06-19 17:46:54 +00:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.mkammerer.snowflake-id</groupId>
<artifactId>snowflake-id</artifactId>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
2022-01-08 12:15:03 +00:00
<defaultGoal>clean package</defaultGoal>
<finalName>ThemeParkConnector v${project.version}</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2021-06-19 17:46:54 +00:00
<plugins>
2022-01-08 12:15:03 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
2021-06-19 17:46:54 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2022-01-08 12:15:03 +00:00
<version>3.2.4</version>
2021-06-19 17:46:54 +00:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
2022-01-08 12:15:03 +00:00
<configuration>
<minimizeJar>true</minimizeJar>
<relocations>
<relocation>
<pattern>de.tr7zw.</pattern>
<shadedPattern>nl.iobyte.thirdparty.de.tr7zw.</shadedPattern>
</relocation>
<relocation>
<pattern>io.socket.</pattern>
<shadedPattern>nl.iobyte.thirdparty.io.socket.</shadedPattern>
</relocation>
</relocations>
</configuration>
2021-06-19 17:46:54 +00:00
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>