2022-01-29 14:01:49 +01:00
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2024-09-20 17:28:14 +02:00
|
|
|
<groupId>eu.m724</groupId>
|
2022-01-29 14:01:49 +01:00
|
|
|
<artifactId>giants</artifactId>
|
2024-11-10 10:04:15 +01:00
|
|
|
<version>2.0.11-SNAPSHOT</version>
|
2022-01-29 14:01:49 +01:00
|
|
|
|
|
|
|
<properties>
|
2025-01-05 11:28:18 +01:00
|
|
|
<maven.compiler.release>17</maven.compiler.release>
|
2024-10-27 15:00:50 +01:00
|
|
|
<jarsigner.keystore>${project.basedir}/keystore.jks</jarsigner.keystore>
|
|
|
|
<jarsigner.alias>mykey</jarsigner.alias>
|
2024-10-27 14:42:50 +01:00
|
|
|
<jarsigner.storepass>123456</jarsigner.storepass>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2022-01-29 14:01:49 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2024-09-20 17:28:14 +02:00
|
|
|
<repository>
|
|
|
|
<id>m724</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
|
|
|
</repository>
|
2022-01-29 14:01:49 +01:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2024-09-22 11:05:05 +02:00
|
|
|
<version>1.14.4-R0.1-SNAPSHOT</version>
|
2022-01-29 14:01:49 +01:00
|
|
|
<scope>provided</scope>
|
2024-09-22 11:05:05 +02:00
|
|
|
<!-- fix vulnerabilities complaints -->
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2022-01-29 14:01:49 +01:00
|
|
|
</dependency>
|
2024-10-24 14:22:53 +02:00
|
|
|
|
2024-09-22 11:26:20 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-10-24 14:22:53 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>eu.m724</groupId>
|
|
|
|
<artifactId>jarupdater</artifactId>
|
2024-11-10 10:02:55 +01:00
|
|
|
<version>0.1.10</version>
|
2024-10-24 14:22:53 +02:00
|
|
|
</dependency>
|
2022-01-29 14:01:49 +01:00
|
|
|
</dependencies>
|
2022-01-29 14:24:20 +01:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
2024-09-20 17:28:14 +02:00
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
2022-01-29 14:24:20 +01:00
|
|
|
</resource>
|
|
|
|
</resources>
|
2022-01-31 12:37:41 +01:00
|
|
|
<plugins>
|
2024-09-20 17:28:14 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
2024-09-22 11:26:20 +02:00
|
|
|
<version>3.1.1</version>
|
2024-09-20 17:28:14 +02:00
|
|
|
<configuration>
|
|
|
|
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-09-22 11:26:20 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.6.0</version>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2024-10-27 14:42:50 +01:00
|
|
|
<minimizeJar>true</minimizeJar>
|
2024-10-24 14:22:53 +02:00
|
|
|
<!-- <shadedArtifactAttached>true</shadedArtifactAttached>
|
|
|
|
<shadedClassifierName>full</shadedClassifierName> -->
|
2024-09-22 11:26:20 +02:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats</pattern>
|
|
|
|
<shadedPattern>eu.m724.giants</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2024-10-24 14:22:53 +02:00
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>org.bstats:*</include>
|
|
|
|
<include>eu.m724:jarupdater</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
2024-10-27 14:42:50 +01:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/MANIFEST.MF</exclude>
|
|
|
|
<exclude>META-INF/maven/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2024-09-22 11:26:20 +02:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2024-10-27 14:42:50 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jarsigner-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign</id>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>verify</id>
|
|
|
|
<goals>
|
|
|
|
<goal>verify</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<keystore>${jarsigner.keystore}</keystore>
|
|
|
|
<alias>${jarsigner.alias}</alias>
|
|
|
|
<storepass>${jarsigner.storepass}</storepass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-01-31 12:37:41 +01:00
|
|
|
</plugins>
|
2022-01-29 14:24:20 +01:00
|
|
|
</build>
|
2024-09-20 17:28:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<developerConnection>scm:git:git@git.m724.eu:Minecon724/giants.git</developerConnection>
|
2024-11-10 10:04:15 +01:00
|
|
|
<tag>HEAD</tag>
|
2024-09-20 17:28:14 +02:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>m724</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>m724</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2022-01-29 14:01:49 +01:00
|
|
|
</project>
|