This commit is contained in:
Kiran Hart 2023-08-25 13:03:57 -04:00
parent 13708c8ab4
commit 99fac3c589
No known key found for this signature in database
GPG Key ID: 5F36C7BC79D3EBC3

23
pom.xml
View File

@ -8,7 +8,7 @@
<name>AuctionHouse</name>
<description>The ultimate auction solution for your server</description>
<version>2.100.5</version>
<version>2.100.6</version>
<packaging>jar</packaging>
<properties>
<author>Kiran Hart</author>
@ -341,21 +341,22 @@
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.coderplus.maven.plugins</groupId>
<artifactId>copy-rename-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<id>evalut</id>
<id>copy-named-jar</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
<goal>copy</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>
<sourceFile>${project.build.directory}/${project.name}.jar</sourceFile>
<destinationFile>D:\Development\Spigot Plugins\Ready Jars\Auction House\${project.name} - v${project.version}.jar</destinationFile>
</configuration>
</execution>
</executions>