Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion bukkit/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -20,6 +20,22 @@
</goals>
</execution>
</executions>
<configuration>
<relocations>
<relocation>
<pattern>com.fasterxml.jackson</pattern>
<shadedPattern>net.donationstore.plugin.internal.jackson</shadedPattern>
</relocation>
<relocation>
<pattern>okhttp3</pattern>
<shadedPattern>net.donationstore.plugin.internal.okhttp3</shadedPattern>
</relocation>
<relocation>
<pattern>okio</pattern>
<shadedPattern>net.donationstore.plugin.internal.okio</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
18 changes: 17 additions & 1 deletion bukkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -48,6 +48,22 @@
</goals>
</execution>
</executions>
<configuration>
<relocations>
<relocation>
<pattern>com.fasterxml.jackson</pattern>
<shadedPattern>net.donationstore.plugin.internal.jackson</shadedPattern>
</relocation>
<relocation>
<pattern>okhttp3</pattern>
<shadedPattern>net.donationstore.plugin.internal.okhttp3</shadedPattern>
</relocation>
<relocation>
<pattern>okio</pattern>
<shadedPattern>net.donationstore.plugin.internal.okio</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
50 changes: 50 additions & 0 deletions bungeecord/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>Donation-Store-Minecraft</artifactId>
<groupId>net.donationstore</groupId>
<version>2.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>donation-store-bungeecord</artifactId>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<relocations>
<relocation>
<pattern>com.fasterxml.jackson</pattern>
<shadedPattern>net.donationstore.plugin.internal.jackson</shadedPattern>
</relocation>
<relocation>
<pattern>okhttp3</pattern>
<shadedPattern>net.donationstore.plugin.internal.okhttp3</shadedPattern>
</relocation>
<relocation>
<pattern>okio</pattern>
<shadedPattern>net.donationstore.plugin.internal.okio</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-api</artifactId>
<version>1.14-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
18 changes: 17 additions & 1 deletion bungeecord/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.6</version>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -47,6 +47,22 @@
</goals>
</execution>
</executions>
<configuration>
<relocations>
<relocation>
<pattern>com.fasterxml.jackson</pattern>
<shadedPattern>net.donationstore.plugin.internal.jackson</shadedPattern>
</relocation>
<relocation>
<pattern>okhttp3</pattern>
<shadedPattern>net.donationstore.plugin.internal.okhttp3</shadedPattern>
</relocation>
<relocation>
<pattern>okio</pattern>
<shadedPattern>net.donationstore.plugin.internal.okio</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
8 changes: 6 additions & 2 deletions common/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -27,9 +27,13 @@
<shadedPattern>net.donationstore.plugin.internal.jackson</shadedPattern>
</relocation>
<relocation>
<pattern>com.squareup.okhttp3</pattern>
<pattern>okhttp3</pattern>
<shadedPattern>net.donationstore.plugin.internal.okhttp3</shadedPattern>
</relocation>
<relocation>
<pattern>okio</pattern>
<shadedPattern>net.donationstore.plugin.internal.okio</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
Expand Down
8 changes: 6 additions & 2 deletions common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,21 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.4</version>
<configuration>
<relocations>
<relocation>
<pattern>com.fasterxml.jackson</pattern>
<shadedPattern>net.donationstore.plugin.internal.jackson</shadedPattern>
</relocation>
<relocation>
<pattern>com.squareup.okhttp3</pattern>
<pattern>okhttp3</pattern>
<shadedPattern>net.donationstore.plugin.internal.okhttp3</shadedPattern>
</relocation>
<relocation>
<pattern>okio</pattern>
<shadedPattern>net.donationstore.plugin.internal.okio</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
Expand Down
8 changes: 6 additions & 2 deletions sponge/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -27,9 +27,13 @@
<shadedPattern>net.donationstore.plugin.internal.jackson</shadedPattern>
</relocation>
<relocation>
<pattern>com.squareup.okhttp3</pattern>
<pattern>okhttp3</pattern>
<shadedPattern>net.donationstore.plugin.internal.okhttp3</shadedPattern>
</relocation>
<relocation>
<pattern>okio</pattern>
<shadedPattern>net.donationstore.plugin.internal.okio</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
Expand Down
8 changes: 6 additions & 2 deletions sponge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,21 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.4</version>
<configuration>
<relocations>
<relocation>
<pattern>com.fasterxml.jackson</pattern>
<shadedPattern>net.donationstore.plugin.internal.jackson</shadedPattern>
</relocation>
<relocation>
<pattern>com.squareup.okhttp3</pattern>
<pattern>okhttp3</pattern>
<shadedPattern>net.donationstore.plugin.internal.okhttp3</shadedPattern>
</relocation>
<relocation>
<pattern>okio</pattern>
<shadedPattern>net.donationstore.plugin.internal.okio</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
Expand Down
18 changes: 17 additions & 1 deletion velocity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.6</version>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -62,6 +62,22 @@
</goals>
</execution>
</executions>
<configuration>
<relocations>
<relocation>
<pattern>com.fasterxml.jackson</pattern>
<shadedPattern>net.donationstore.plugin.internal.jackson</shadedPattern>
</relocation>
<relocation>
<pattern>okhttp3</pattern>
<shadedPattern>net.donationstore.plugin.internal.okhttp3</shadedPattern>
</relocation>
<relocation>
<pattern>okio</pattern>
<shadedPattern>net.donationstore.plugin.internal.okio</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
</plugins>
</build>
Expand Down