try that once again
Some checks failed
/ build (push) Failing after 45s

This commit is contained in:
Minecon724 2024-12-28 19:14:18 +01:00
parent 1872425b89
commit 6c85ffbff5
Signed by: Minecon724
GPG key ID: 3CCC4D267742C8E8

29
pom.xml
View file

@ -32,25 +32,30 @@
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
<executions>
<execution>
<phase>prepare-package</phase>
<configuration>
<target>
<replace token="v1_21_R1" value="${project.nms.version}" dir="target/classes">
<include name="**/*.java" />
</replace>
</target>
</configuration>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<includes>
<include>${basedir}src/main/java/**/*.java</include>
</includes>
<replacements>
<replacement>
<token>v1_21_R1</token>
<value>${project.nms.version}</value>
</replacement>
</replacements>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>