Skip to content

Commit

Permalink
Temporarily switch to snapshot version of the maven shade plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
VoxCrafterLP committed Dec 9, 2021
1 parent fc50aa0 commit 9d608d8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
14 changes: 10 additions & 4 deletions dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.voxcrafterlp</groupId>
<artifactId>CauldronInteract</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.1-RELEASE</version>
<developers>
<developer>
<name>VoxCrafter_LP</name>
Expand All @@ -15,7 +15,7 @@
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>3.3.0-SNAPSHOT</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -49,6 +49,12 @@
<url>https://repo.voxcrafter.dev/repository/maven-releases/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>maven-snapshots</id>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
Expand All @@ -64,7 +70,7 @@
</dependency>
</dependencies>
<properties>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<maven.compiler.source>16</maven.compiler.source>
</properties>
</project>
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,19 @@
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<id>maven-snapshots</id>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
</pluginRepository>
</pluginRepositories>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>3.3.0-SNAPSHOT</version>
<configuration>
<relocations>
<relocation>
Expand Down

0 comments on commit 9d608d8

Please sign in to comment.