Switch from MCStats to bStats

This commit is contained in:
Daniel Saukel
2018-09-21 22:28:35 +02:00
parent f736a6e331
commit fcc60c133a
3 changed files with 38 additions and 766 deletions
+36
View File
@@ -40,6 +40,32 @@
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.bstats:bstats-bukkit</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.bstats.bukkit</pattern>
<shadedPattern>com.dre.brewery.integration</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
@@ -68,6 +94,10 @@
<id>dre2n-rpo</id>
<url>http://erethon.de/repo/</url>
</repository>
<repository>
<id>bstats-repo</id>
<url>http://repo.bstats.org/content/repositories/releases/</url>
</repository>
</repositories>
<dependencies>
@@ -125,5 +155,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>1.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>