Took 22 seconds
This commit is contained in:
Kiran Hart 2023-06-16 15:08:47 -04:00
parent f9e4cf63e7
commit 0ddbe26647
No known key found for this signature in database
GPG Key ID: 5F36C7BC79D3EBC3

47
pom.xml
View File

@ -8,14 +8,14 @@
<name>AuctionHouse</name>
<description>The ultimate auction solution for your server</description>
<version>2.97.0</version>
<version>2.98.0</version>
<packaging>jar</packaging>
<properties>
<author>Kiran Hart</author>
<jarName>${project.name}</jarName>
<main.class>${project.groupId}.${project.artifactId}.${project.name}</main.class>
<java.version>8</java.version>
<flight.version>3.12.0</flight.version>
<flight.version>3.14.0</flight.version>
<flight.path>ca.tweetzy</flight.path>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
@ -83,6 +83,11 @@
<id>chestshop-repo</id>
<url>https://repo.minebench.de/</url>
</repository>
<repository>
<id>codemc-repo</id>
<url>https://repo.codemc.io/repository/maven-public/</url>
<layout>default</layout>
</repository>
</repositories>
<pluginRepositories>
@ -96,7 +101,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
<version>1.20.1-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
@ -113,7 +118,12 @@
<dependency>
<groupId>ca.tweetzy</groupId>
<artifactId>tweetycore</artifactId>
<version>3.5.0</version>
<version>3.6.0</version>
</dependency>
<dependency>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api</artifactId>
<version>2.11.3</version>
</dependency>
<dependency>
<groupId>org.mineacademy.plugin</groupId>
@ -186,6 +196,11 @@
<version>2.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
</dependency>
</dependencies>
<build>
<finalName>${jarName}</finalName>
@ -270,6 +285,7 @@
<include>org.slf4j:slf4j-nop</include>
<include>co.aikar:taskchain-bukkit</include>
<include>co.aikar:taskchain-core</include>
<include>de.tr7zw:item-nbt-api</include>
</includes>
</artifactSet>
<filters>
@ -302,7 +318,11 @@
</relocation>
<relocation>
<pattern>co.aikar.taskchain</pattern>
<shadedPattern>${project.groupId}.${project.artifactId}.lib.taskchain</shadedPattern> <!-- Replace this -->
<shadedPattern>${project.groupId}.${project.artifactId}.lib.taskchain</shadedPattern>
</relocation>
<relocation>
<pattern>de.tr7zw.changeme.nbtapi</pattern>
<shadedPattern>${project.groupId}.${project.artifactId}.lib.de.tr7zw.nbtapi</shadedPattern>
</relocation>
</relocations>
</configuration>
@ -328,6 +348,23 @@
</resources>
</configuration>
</execution>
<execution>
<id>evalut</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>D:\Development\Spigot Servers\evalut test server\test server\plugins</outputDirectory>
<resources>
<resource>
<directory>${project.build.directory}</directory>
<include>${project.name}.jar</include>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>