mSpigot-Parent/patches/api/0002-More-pom.xml-ceanup-up...

51 lines
2.1 KiB
Diff

From 3e6822e8eacfd02ee03f4ecab347d32c60a92eca Mon Sep 17 00:00:00 2001
From: virtualWinter <winter@catmc.club>
Date: Fri, 21 Jul 2023 05:12:56 +0300
Subject: [PATCH] More pom.xml ceanup + updates
diff --git a/pom.xml b/pom.xml
index 14c8fda0..83f9f514 100644
--- a/pom.xml
+++ b/pom.xml
@@ -106,16 +106,11 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <!-- versions after this appear to be broken -->
- <version>3.1</version>
+ <version>3.11.0</version>
<configuration>
- <!-- we use the Eclipse compiler as it doesn't need a JDK -->
- <compilerId>eclipse</compilerId>
- <!-- source and target are ignored if this isn't true -->
<optimize>true</optimize>
</configuration>
<dependencies>
- <!-- we need our custom version as it fixes some bugs on case sensitive file systems -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-eclipse</artifactId>
@@ -126,7 +121,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
- <version>2.3</version>
+ <version>3.5.0</version>
<executions>
<execution>
<phase>package</phase>
@@ -136,9 +131,7 @@
</execution>
</executions>
<configuration>
- <!-- utterly useless artifact from shade 2.x -->
<createDependencyReducedPom>false</createDependencyReducedPom>
- <!-- when downloading via Maven we can pull depends individually -->
<shadedArtifactAttached>true</shadedArtifactAttached>
</configuration>
</plugin>
--
2.41.0.windows.1