Skip to content

Commit

Permalink
Merge pull request #6 from JustAHuman-xD/fix/only-pom-changes-lol
Browse files Browse the repository at this point in the history
  • Loading branch information
WalshyDev authored Mar 8, 2024
2 parents 0041baf + bb0625f commit b0987a4
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,42 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.11.0</version>
<configuration>
<source>17</source>
<target>17</target>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>3.4.1</version>
<configuration>
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>dev.j3fftw.worldeditslimefun.bstats</shadedPattern>
</relocation>
<relocation>
<pattern>co.aikar.commands</pattern>
<shadedPattern>dev.j3fftw.worldeditslimefun.acf</shadedPattern>
</relocation>
<relocation>
<pattern>co.aikar.locales</pattern>
<shadedPattern>dev.j3fftw.worldeditslimefun.locales</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
Expand Down Expand Up @@ -86,7 +103,7 @@
<dependency>
<groupId>com.github.Slimefun</groupId>
<artifactId>Slimefun4</artifactId>
<version>cd3672c3f2</version>
<version>RC-37</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit b0987a4

Please sign in to comment.