This commit is contained in:
2022-05-01 13:28:41 +02:00
parent fbe40942fb
commit dd08c13f89
19 changed files with 578 additions and 388 deletions

27
pom.xml
View File

@ -6,7 +6,7 @@
<groupId>tk.ditservices</groupId>
<artifactId>SimplifyTools</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>SimplifyTools</name>
@ -16,11 +16,11 @@
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<url>dit-services.tk</url>
<url>ditservices.hu</url>
<ciManagement>
<system>jenkins</system>
<url>https://ci.dit-services.tk/job/SimplifyTools/</url>
<url>https://ci.ditservices.hu/job/SimplifyTools/</url>
</ciManagement>
<issueManagement>
@ -52,6 +52,15 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<relocations>
<!-- Using the maven-shade-plugin to shade and relocate the UpdateChecker -->
<relocation>
<pattern>com.jeff_media.updatechecker</pattern>
<shadedPattern>tk.ditservices.updatechecker</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
@ -78,6 +87,10 @@
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>-->
<repository>
<id>jeff-media-public</id>
<url>https://hub.jeff-media.com/nexus/repository/jeff-media-public/</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
@ -89,8 +102,14 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.16.5-R0.1-SNAPSHOT</version>
<version>1.18.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.jeff_media</groupId>
<artifactId>SpigotUpdateChecker</artifactId>
<version>2.2.0</version> <!-- Check on GitHub for the latest version -->
<scope>compile</scope>
</dependency>
</dependencies>
</project>