2022-10-20 17:48:16 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>net.artelnatif</groupId>
|
|
|
|
<artifactId>nicko-parent</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>dist</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<directory>../target</directory>
|
|
|
|
<finalName>nicko-${project.version}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.3.1-SNAPSHOT</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
2022-10-23 12:38:21 +02:00
|
|
|
<include>net.artelnatif:*</include>
|
2022-10-20 17:48:16 +02:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2023-01-20 23:36:15 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>specialsource-maven-plugin</artifactId>
|
|
|
|
<version>1.2.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>remap</goal>
|
|
|
|
</goals>
|
|
|
|
<id>remap-obf</id>
|
|
|
|
<configuration>
|
|
|
|
<srgIn>org.spigotmc:minecraft-server:1.19.3-R0.1-SNAPSHOT:txt:maps-mojang</srgIn>
|
|
|
|
<reverse>true</reverse>
|
|
|
|
<remappedDependencies>org.spigotmc:spigot:1.19.3-R0.1-SNAPSHOT:jar:remapped-mojang</remappedDependencies>
|
|
|
|
<remappedArtifactAttached>true</remappedArtifactAttached>
|
|
|
|
<remappedClassifierName>remapped-obf</remappedClassifierName>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>remap</goal>
|
|
|
|
</goals>
|
|
|
|
<id>remap-spigot</id>
|
|
|
|
<configuration>
|
|
|
|
<inputFile>${project.build.directory}/${project.artifactId}-${project.version}-remapped-obf.jar</inputFile>
|
|
|
|
<srgIn>org.spigotmc:minecraft-server:1.19.3-R0.1-SNAPSHOT:csrg:maps-spigot</srgIn>
|
|
|
|
<remappedDependencies>org.spigotmc:spigot:1.19.3-R0.1-SNAPSHOT:jar:remapped-obf</remappedDependencies>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-10-20 17:48:16 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.artelnatif</groupId>
|
|
|
|
<artifactId>nicko-core</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
</dependency>
|
2022-11-10 10:31:46 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.artelnatif</groupId>
|
|
|
|
<artifactId>nicko-v1_17_R1</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
</dependency>
|
2022-10-23 12:38:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.artelnatif</groupId>
|
|
|
|
<artifactId>nicko-v1_18_R1</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
</dependency>
|
2022-10-20 17:48:16 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.artelnatif</groupId>
|
|
|
|
<artifactId>nicko-v1_18_R2</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
</dependency>
|
2022-10-23 12:38:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.artelnatif</groupId>
|
|
|
|
<artifactId>nicko-v1_19_R1</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
</dependency>
|
2023-01-20 23:36:15 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.artelnatif</groupId>
|
|
|
|
<artifactId>nicko-v1_19_R2</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
</dependency>
|
2022-10-20 17:48:16 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|