2024-06-01 13:25:04 +02: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">
|
2024-06-01 19:35:15 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>eu.m724</groupId>
|
|
|
|
<artifactId>realweather</artifactId>
|
2024-06-26 15:16:59 +02:00
|
|
|
<version>0.9.6-SNAPSHOT</version>
|
2024-06-01 19:35:15 +02:00
|
|
|
|
|
|
|
<properties>
|
2024-06-13 17:26:36 +02:00
|
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
|
|
<maven.compiler.target>21</maven.compiler.target>
|
2024-06-13 17:20:07 +02:00
|
|
|
<jarsigner.keystore>${project.basedir}/testkeystore</jarsigner.keystore>
|
|
|
|
<jarsigner.alias>testkey</jarsigner.alias>
|
|
|
|
<jarsigner.storepass>123456</jarsigner.storepass>
|
2024-06-01 19:35:15 +02:00
|
|
|
</properties>
|
2024-06-18 13:22:48 +02:00
|
|
|
|
|
|
|
<scm>
|
2024-06-26 15:18:26 +02:00
|
|
|
<developerConnection>scm:git:git@git.m724.eu:Minecon724/realweather.git</developerConnection>
|
2024-06-26 15:16:59 +02:00
|
|
|
<tag>HEAD</tag>
|
2024-06-18 13:28:22 +02:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
2024-06-26 15:18:26 +02:00
|
|
|
<id>m724</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
2024-06-18 13:28:22 +02:00
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
2024-06-26 15:18:26 +02:00
|
|
|
<id>m724</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
2024-06-18 13:28:22 +02:00
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2024-06-01 19:35:15 +02:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
2024-06-26 15:18:26 +02:00
|
|
|
<id>m724</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
2024-06-01 19:35:15 +02:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2024-06-13 17:26:36 +02:00
|
|
|
<version>1.21-R0.1-SNAPSHOT</version>
|
2024-06-01 19:35:15 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>eu.m724</groupId>
|
|
|
|
<artifactId>wtapi</artifactId>
|
2024-06-22 13:22:48 +02:00
|
|
|
<version>0.7</version>
|
2024-06-01 19:35:15 +02:00
|
|
|
</dependency>
|
2024-06-26 12:29:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.m724</groupId>
|
|
|
|
<artifactId>jarupdater</artifactId>
|
|
|
|
<version>0.1.0</version>
|
|
|
|
</dependency>
|
2024-06-01 19:35:15 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2024-06-03 16:33:06 +02:00
|
|
|
<build>
|
2024-06-01 19:35:15 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2024-06-03 16:33:06 +02:00
|
|
|
<plugins>
|
2024-06-18 13:22:48 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
2024-06-18 13:25:23 +02:00
|
|
|
<configuration>
|
|
|
|
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
|
|
|
|
</configuration>
|
2024-06-18 13:22:48 +02:00
|
|
|
</plugin>
|
2024-06-03 16:33:06 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.6.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>eu.m724:wtapi</include>
|
2024-06-26 15:04:10 +02:00
|
|
|
<include>eu.m724:jarupdater</include>
|
2024-06-16 15:00:58 +02:00
|
|
|
<!-- <include>org.java-websocket:Java-WebSocket</include> -->
|
2024-06-03 16:33:06 +02:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>eu.m724:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/MANIFEST.MF</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
<minimizeJar>true</minimizeJar>
|
2024-06-13 17:20:07 +02:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2024-06-03 16:33:06 +02:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2024-06-13 17:20:07 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jarsigner-plugin</artifactId>
|
|
|
|
<version>3.0.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>
|
2024-06-03 16:33:06 +02:00
|
|
|
</plugins>
|
2024-06-01 19:35:15 +02:00
|
|
|
</build>
|
|
|
|
|
2024-06-26 15:18:26 +02:00
|
|
|
</project>
|