Skip to content

Commit

Permalink
bstats update
Browse files Browse the repository at this point in the history
  • Loading branch information
mrgeneralq committed Aug 30, 2022
1 parent 7ac64c6 commit 4aac4ad
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@
<target>${java.version}</target>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
<!-- Do not include the <configuration>...</configuration> part if you are using Sponge! -->
Do not include the <configuration>...</configuration> part if you are using Sponge!
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<relocations>
Expand All @@ -57,6 +58,28 @@
</goals>
</execution>
</executions>
</plugin> -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<!-- Replace this with your package! -->
<shadedPattern>${shade.base}.bstats</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
Expand Down Expand Up @@ -122,7 +145,7 @@
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>1.8</version>
<version>3.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 4aac4ad

Please sign in to comment.