tweaks724/pom.xml

173 lines
6.7 KiB
XML
Raw Normal View History

2024-11-14 18:25:30 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2024-11-27 20:46:13 +01:00
<!--
2025-01-01 16:32:28 +01:00
~ Copyright (C) 2025 Minecon724
2024-11-27 20:46:13 +01:00
~ Tweaks724 is licensed under the GNU General Public License. See the LICENSE.md file
~ in the project root for the full license text.
-->
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2024-11-14 18:25:30 +01:00
<modelVersion>4.0.0</modelVersion>
<groupId>eu.m724</groupId>
2024-11-18 16:52:57 +01:00
<artifactId>tweaks</artifactId>
<version>0.1.13</version>
2024-11-14 18:25:30 +01:00
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2024-12-28 19:54:27 +01:00
2025-01-20 11:02:18 +01:00
<project.craftbukkit.version>v1_21_R3</project.craftbukkit.version>
2025-01-20 10:36:50 +01:00
<project.minecraft.version>1.21.4</project.minecraft.version>
<project.spigot.version>${project.minecraft.version}-R0.1-SNAPSHOT</project.spigot.version>
2024-11-14 18:25:30 +01:00
</properties>
<build>
<finalName>${project.artifactId}-${project.version}+${project.minecraft.version}</finalName>
2024-11-14 18:25:30 +01:00
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2024-11-18 16:52:57 +01:00
<plugins>
2024-12-28 19:54:27 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>custom-nms-version</id>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
2025-01-20 11:02:18 +01:00
<replace token="v1_21_R3" value="${project.craftbukkit.version}" dir="src/main">
2024-12-28 19:54:27 +01:00
<include name="**/*.java" />
</replace>
</target>
</configuration>
</execution>
<execution>
<id>cleanup-custom-nms-version</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
2025-01-20 11:02:18 +01:00
<replace token="${project.craftbukkit.version}" value="v1_21_R3" dir="src/main">
2024-12-28 19:54:27 +01:00
<include name="**/*.java" />
</replace>
</target>
</configuration>
</execution>
</executions>
</plugin>
2024-11-19 17:40:03 +01:00
<plugin>
<groupId>net.md-5</groupId>
<artifactId>specialsource-maven-plugin</artifactId>
<version>2.0.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>remap</goal>
</goals>
<id>remap-obf</id>
<configuration>
<srgIn>org.spigotmc:minecraft-server:${project.spigot.version}:txt:maps-mojang</srgIn>
<remappedDependencies>org.spigotmc:spigot:${project.spigot.version}:jar:remapped-mojang</remappedDependencies>
2025-01-20 12:12:42 +01:00
<reverse>true</reverse>
2024-11-19 17:40:03 +01:00
</configuration>
</execution>
<execution>
<phase>package</phase>
<goals>
<goal>remap</goal>
</goals>
<id>remap-spigot</id>
<configuration>
<srgIn>org.spigotmc:minecraft-server:${project.spigot.version}:csrg:maps-spigot</srgIn>
<remappedDependencies>org.spigotmc:spigot:${project.spigot.version}:jar:remapped-obf</remappedDependencies>
</configuration>
</execution>
</executions>
</plugin>
2024-11-30 11:35:21 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
</configuration>
</plugin>
2024-11-18 16:52:57 +01:00
</plugins>
2024-11-14 18:25:30 +01:00
</build>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2024-11-17 09:48:38 +01:00
<repository>
<id>dmulloy2-repo</id>
<url>https://repo.dmulloy2.net/repository/public/</url>
</repository>
2024-11-30 11:35:21 +01:00
<repository>
<id>m724-repo</id>
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
</repository>
2024-11-14 18:25:30 +01:00
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2025-01-02 19:44:24 +01:00
<version>1.21.1-R0.1-SNAPSHOT</version>
2024-11-14 18:25:30 +01:00
<scope>provided</scope>
</dependency>
2024-11-15 19:43:42 +01:00
<dependency>
2024-11-19 17:40:03 +01:00
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>${project.spigot.version}</version>
<classifier>remapped-mojang</classifier>
<scope>provided</scope>
2024-11-15 19:43:42 +01:00
</dependency>
2024-11-17 09:48:38 +01:00
<dependency>
<groupId>com.comphenix.protocol</groupId>
<artifactId>ProtocolLib</artifactId>
<version>5.3.0</version>
<scope>provided</scope>
</dependency>
2024-12-08 13:31:06 +01:00
<dependency>
<groupId>eu.m724</groupId>
<artifactId>mstats-spigot</artifactId>
<version>0.1.0</version>
<scope>provided</scope>
</dependency>
2024-11-19 17:40:03 +01:00
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.1.0</version>
<scope>compile</scope>
</dependency>
2024-11-14 18:25:30 +01:00
</dependencies>
2024-11-30 11:35:21 +01:00
<distributionManagement>
<repository>
<id>m724</id>
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
</repository>
</distributionManagement>
2024-11-30 11:35:21 +01:00
<scm>
<developerConnection>scm:git:git@git.m724.eu:Minecon724/tweaks724.git</developerConnection>
<tag>tweaks-0.1.13</tag>
2024-11-30 11:35:21 +01:00
</scm>
2024-11-14 18:25:30 +01:00
</project>