2011-01-01 20:37:52 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2015-03-16 11:11:29 +01:00
|
|
|
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>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2021-07-06 16:00:00 +02:00
|
|
|
<version>1.17.1-R0.1-SNAPSHOT</version>
|
2015-03-16 11:11:29 +01:00
|
|
|
<name>CraftBukkit</name>
|
2019-04-25 04:00:00 +02:00
|
|
|
<url>https://www.spigotmc.org/</url>
|
2012-01-14 21:03:48 +01:00
|
|
|
|
2015-03-16 11:11:29 +01:00
|
|
|
<properties>
|
2019-01-04 10:25:27 +01:00
|
|
|
<skipTests>true</skipTests>
|
2015-03-16 11:11:29 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<api.version>unknown</api.version>
|
2021-01-16 02:00:00 +01:00
|
|
|
<bt.name>git</bt.name>
|
2021-06-11 07:00:00 +02:00
|
|
|
<minecraft_version>1_17_R1</minecraft_version>
|
2017-05-14 04:00:00 +02:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2015-03-16 11:11:29 +01:00
|
|
|
</properties>
|
2012-01-14 21:03:48 +01:00
|
|
|
|
2015-03-16 11:11:29 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>minecraft-server</artifactId>
|
2021-06-11 07:00:00 +02:00
|
|
|
<version>${project.version}</version>
|
2015-03-16 11:11:29 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jline</groupId>
|
|
|
|
<artifactId>jline</artifactId>
|
2016-11-17 02:41:03 +01:00
|
|
|
<version>2.12.1</version>
|
2015-03-16 11:11:29 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-09-12 01:05:20 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-iostreams</artifactId>
|
2021-06-11 07:00:00 +02:00
|
|
|
<version>2.14.1</version>
|
2020-09-12 01:05:20 +02:00
|
|
|
<scope>compile</scope>
|
2021-01-16 02:00:00 +01:00
|
|
|
<exclusions>
|
|
|
|
<!-- included in minecraft-server -->
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2020-09-12 01:05:20 +02:00
|
|
|
</dependency>
|
2018-07-15 02:00:00 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
2021-08-13 00:45:32 +02:00
|
|
|
<version>9.2</version>
|
2018-07-15 02:00:00 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-04-23 04:00:00 +02:00
|
|
|
<!-- deprecated API depend -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
|
|
<artifactId>json-simple</artifactId>
|
|
|
|
<version>1.1.1</version>
|
2021-05-16 10:09:49 +02:00
|
|
|
<scope>runtime</scope>
|
2019-04-23 04:00:00 +02:00
|
|
|
</dependency>
|
2015-03-16 11:11:29 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
2021-01-01 22:44:43 +01:00
|
|
|
<version>3.34.0</version>
|
2017-10-29 00:31:22 +02:00
|
|
|
<scope>runtime</scope>
|
2015-03-16 11:11:29 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2020-06-25 02:00:00 +02:00
|
|
|
<version>5.1.49</version>
|
2017-10-29 00:31:22 +02:00
|
|
|
<scope>runtime</scope>
|
2015-03-16 11:11:29 +01:00
|
|
|
</dependency>
|
2021-05-15 01:05:18 +02:00
|
|
|
<!-- add these back in as they are not exposed by the API -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-resolver-provider</artifactId>
|
|
|
|
<version>3.8.1</version>
|
2021-05-16 10:09:49 +02:00
|
|
|
<scope>runtime</scope>
|
2021-05-15 01:05:18 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-connector-basic</artifactId>
|
2021-06-11 07:00:00 +02:00
|
|
|
<version>1.7.0</version>
|
2021-05-16 10:09:49 +02:00
|
|
|
<scope>runtime</scope>
|
2021-05-15 01:05:18 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-transport-http</artifactId>
|
2021-06-11 07:00:00 +02:00
|
|
|
<version>1.7.0</version>
|
2021-05-16 10:09:49 +02:00
|
|
|
<scope>runtime</scope>
|
2021-05-15 01:05:18 +02:00
|
|
|
</dependency>
|
2015-03-16 11:11:29 +01:00
|
|
|
<!-- testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-10-17 08:51:10 +02:00
|
|
|
<version>4.13.1</version>
|
2015-03-16 11:11:29 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-library</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2012-01-14 21:03:48 +01:00
|
|
|
|
2015-03-16 11:11:29 +01:00
|
|
|
<!-- This builds a completely 'ready to start' jar with all dependencies inside -->
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2015-03-16 11:12:03 +01:00
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>scriptus</artifactId>
|
2020-04-22 03:50:23 +02:00
|
|
|
<version>0.4.1</version>
|
2015-03-16 11:11:29 +01:00
|
|
|
<configuration>
|
2021-01-16 02:00:00 +01:00
|
|
|
<format>${bt.name}-Bukkit-%s</format>
|
2015-03-16 11:11:29 +01:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2015-03-16 11:12:03 +01:00
|
|
|
<phase>initialize</phase>
|
2015-03-16 11:11:29 +01:00
|
|
|
<goals>
|
2015-03-16 11:12:03 +01:00
|
|
|
<goal>describe</goal>
|
2015-03-16 11:11:29 +01:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2017-02-01 03:16:30 +01:00
|
|
|
</plugin>
|
2021-06-11 07:00:00 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>initialize</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>clean</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-03-16 11:11:29 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2020-04-22 03:50:23 +02:00
|
|
|
<version>3.2.0</version>
|
2015-03-16 11:11:29 +01:00
|
|
|
<configuration>
|
|
|
|
<archive>
|
2020-04-22 03:50:23 +02:00
|
|
|
<manifest>
|
|
|
|
<addDefaultEntries>false</addDefaultEntries>
|
|
|
|
</manifest>
|
2015-03-16 11:11:29 +01:00
|
|
|
<manifestEntries>
|
|
|
|
<Main-Class>org.bukkit.craftbukkit.Main</Main-Class>
|
|
|
|
<Implementation-Title>CraftBukkit</Implementation-Title>
|
|
|
|
<Implementation-Version>${describe}</Implementation-Version>
|
2020-04-22 03:50:23 +02:00
|
|
|
<Implementation-Vendor>${project.build.outputTimestamp}</Implementation-Vendor>
|
2015-03-16 11:11:29 +01:00
|
|
|
<Specification-Title>Bukkit</Specification-Title>
|
|
|
|
<Specification-Version>${api.version}</Specification-Version>
|
|
|
|
<Specification-Vendor>Bukkit Team</Specification-Vendor>
|
2021-06-11 07:00:00 +02:00
|
|
|
<Multi-Release>true</Multi-Release>
|
2015-03-16 11:11:29 +01:00
|
|
|
</manifestEntries>
|
|
|
|
<manifestSections>
|
|
|
|
<manifestSection>
|
|
|
|
<name>net/bukkit/</name>
|
|
|
|
<manifestEntries>
|
|
|
|
<Sealed>true</Sealed>
|
|
|
|
</manifestEntries>
|
|
|
|
</manifestSection>
|
|
|
|
<manifestSection>
|
|
|
|
<name>com/bukkit/</name>
|
|
|
|
<manifestEntries>
|
|
|
|
<Sealed>true</Sealed>
|
|
|
|
</manifestEntries>
|
|
|
|
</manifestSection>
|
|
|
|
<manifestSection>
|
|
|
|
<name>org/bukkit/</name>
|
|
|
|
<manifestEntries>
|
|
|
|
<Sealed>true</Sealed>
|
|
|
|
</manifestEntries>
|
|
|
|
</manifestSection>
|
|
|
|
</manifestSections>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2021-06-11 07:00:00 +02:00
|
|
|
<version>3.2.4</version>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
|
|
|
<version>9.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm-commons</artifactId>
|
|
|
|
<version>9.1</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2015-03-16 11:11:29 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2018-12-06 05:04:41 +01:00
|
|
|
<createSourcesJar>${shadeSourcesJar}</createSourcesJar>
|
2020-04-22 03:50:23 +02:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>org.spigotmc:minecraft-server</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>com/google/common/**</exclude>
|
|
|
|
<exclude>com/google/gson/**</exclude>
|
|
|
|
<exclude>com/google/thirdparty/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
2021-05-15 08:41:17 +02:00
|
|
|
<filter>
|
|
|
|
<artifact>org.eclipse.sisu:org.eclipse.sisu.inject</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/services/javax.annotation.processing.Processor</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
2020-04-22 03:50:23 +02:00
|
|
|
</filters>
|
2015-03-16 11:11:29 +01:00
|
|
|
<relocations>
|
2019-03-17 02:54:21 +01:00
|
|
|
<!-- Cannot be relocated as it breaks translation property keys -->
|
|
|
|
<!--
|
2015-03-16 11:11:29 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>joptsimple</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.joptsimple</shadedPattern>
|
|
|
|
</relocation>
|
2019-03-17 02:54:21 +01:00
|
|
|
-->
|
2015-03-16 11:11:29 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>jline</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.jline</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
2017-05-14 04:00:00 +02:00
|
|
|
<pattern>it.unimi</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.it.unimi</shadedPattern>
|
2015-03-16 11:11:29 +01:00
|
|
|
</relocation>
|
2019-04-23 04:00:00 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>org.apache.commons.codec</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.org.apache.commons.codec</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.apache.commons.io</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.org.apache.commons.io</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.apache.commons.lang3</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.org.apache.commons.lang3</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
2021-05-15 01:05:18 +02:00
|
|
|
<pattern>org.apache.http</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.org.apache.http</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.apache.maven</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.org.apache.maven</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.codehaus.plexus</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.org.codehaus.plexus</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.eclipse.aether</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.org.eclipse.aether</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.eclipse.sisu</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.org.eclipse.sisu</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
2019-04-23 04:00:00 +02:00
|
|
|
<pattern>org.objectweb.asm</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.org.objectweb.asm</shadedPattern>
|
|
|
|
</relocation>
|
2015-03-16 11:11:29 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>org.bukkit.craftbukkit</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.v${minecraft_version}</shadedPattern>
|
|
|
|
<excludes>
|
|
|
|
<exclude>org.bukkit.craftbukkit.Main*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2016-11-17 02:41:03 +01:00
|
|
|
<transformers>
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
|
|
|
|
<resource>META-INF/services/java.sql.Driver</resource>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
2015-03-16 11:11:29 +01:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2021-06-11 07:00:00 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>specialsource-maven-plugin</artifactId>
|
|
|
|
<version>1.2.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>remap</goal>
|
|
|
|
</goals>
|
|
|
|
<id>remap-fields</id>
|
|
|
|
<configuration>
|
|
|
|
<srgIn>org.spigotmc:minecraft-server:${project.version}:csrg:maps-spigot-fields</srgIn>
|
|
|
|
<reverse>true</reverse>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-03-16 11:11:29 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2019-12-10 23:00:00 +01:00
|
|
|
<version>3.8.1</version>
|
2015-03-16 11:11:29 +01:00
|
|
|
<configuration>
|
|
|
|
<!-- we use the Eclipse compiler as it doesn't need a JDK -->
|
|
|
|
<compilerId>eclipse</compilerId>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-compiler-eclipse</artifactId>
|
2021-03-15 07:46:36 +01:00
|
|
|
<version>2.8.8</version>
|
2015-03-16 11:11:29 +01:00
|
|
|
</dependency>
|
2020-06-28 01:39:16 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jdt</groupId>
|
|
|
|
<artifactId>ecj</artifactId>
|
2021-07-03 03:06:33 +02:00
|
|
|
<version>3.26.0</version>
|
2020-06-28 01:39:16 +02:00
|
|
|
</dependency>
|
2015-03-16 11:11:29 +01:00
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2018-07-15 02:00:00 +02:00
|
|
|
<version>2.12.4</version>
|
2015-03-16 11:11:29 +01:00
|
|
|
<configuration>
|
|
|
|
<workingDirectory>${basedir}/target/test-server</workingDirectory>
|
2012-12-05 21:43:45 +01:00
|
|
|
<excludes>
|
2015-03-16 11:11:29 +01:00
|
|
|
<exclude>org/bukkit/craftbukkit/inventory/ItemStack*Test.java</exclude>
|
2012-12-05 21:43:45 +01:00
|
|
|
</excludes>
|
2015-03-16 11:11:29 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-11-16 23:49:25 +01:00
|
|
|
|
|
|
|
<profiles>
|
2018-12-06 05:04:41 +01:00
|
|
|
<profile>
|
|
|
|
<id>shadeSourcesJar</id>
|
|
|
|
<properties>
|
|
|
|
<shadeSourcesJar>true</shadeSourcesJar>
|
|
|
|
<shadeSourcesContent>true</shadeSourcesContent>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2017-11-16 23:49:25 +01:00
|
|
|
<profile>
|
|
|
|
<id>development</id>
|
2019-01-04 10:25:27 +01:00
|
|
|
<properties>
|
|
|
|
<skipTests>false</skipTests>
|
|
|
|
</properties>
|
2017-11-16 23:49:25 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2019-04-23 06:00:30 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
2021-07-03 03:06:33 +02:00
|
|
|
<version>3.1.2</version>
|
2019-04-23 06:00:30 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2019-04-23 13:01:39 +02:00
|
|
|
<phase>process-classes</phase>
|
2019-04-23 06:00:30 +02:00
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>checkstyle.xml</configLocation>
|
|
|
|
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
2021-07-03 03:06:33 +02:00
|
|
|
<version>8.44</version>
|
2019-04-23 06:00:30 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2017-11-16 23:49:25 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
2021-06-11 07:00:00 +02:00
|
|
|
<version>1.20</version>
|
2017-11-16 23:49:25 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<signature>
|
|
|
|
<groupId>org.codehaus.mojo.signature</groupId>
|
|
|
|
<artifactId>java18</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</signature>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2021-06-11 07:00:00 +02:00
|
|
|
<profile>
|
|
|
|
<id>remapped</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>specialsource-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>remap</goal>
|
|
|
|
</goals>
|
|
|
|
<id>remap-obf</id>
|
|
|
|
<configuration>
|
|
|
|
<srgIn>org.spigotmc:minecraft-server:${project.version}:csrg:maps-spigot</srgIn>
|
|
|
|
<reverse>true</reverse>
|
|
|
|
<remappedArtifactAttached>true</remappedArtifactAttached>
|
|
|
|
<remappedClassifierName>remapped-obf</remappedClassifierName>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>remap</goal>
|
|
|
|
</goals>
|
|
|
|
<id>remap-mojang</id>
|
|
|
|
<configuration>
|
|
|
|
<inputFile>${project.build.directory}/${project.artifactId}-${project.version}-remapped-obf.jar</inputFile>
|
|
|
|
<srgIn>org.spigotmc:minecraft-server:${project.version}:txt:maps-mojang</srgIn>
|
|
|
|
<remappedArtifactAttached>true</remappedArtifactAttached>
|
|
|
|
<remappedClassifierName>remapped-mojang</remappedClassifierName>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2017-11-16 23:49:25 +01:00
|
|
|
</profiles>
|
2011-02-15 00:36:00 +01:00
|
|
|
</project>
|