Skip to content

Commit

Permalink
3.7.1: Fixes #19
Browse files Browse the repository at this point in the history
  • Loading branch information
RoboMWM committed Mar 7, 2016
1 parent 67cf9c7 commit 0372ea1
Show file tree
Hide file tree
Showing 4 changed files with 797 additions and 35 deletions.
66 changes: 33 additions & 33 deletions pom.xml
Expand Up @@ -26,7 +26,7 @@
<!-- Project properties. -->
<groupId>com.extrahardmode</groupId>
<artifactId>ExtraHardMode</artifactId>
<version>3.7</version>
<version>3.7.1</version>
<name>ExtraHardMode</name>
<description>New game rules and mechanics for Minecraft.</description>
<url>http://dev.bukkit.org/server-mods/fun-hard-mode</url>
Expand Down Expand Up @@ -72,33 +72,33 @@
</plugin>

<!-- Shade Metrics -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.mcstats.bukkit:metrics</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.mcstats</pattern>
<shadedPattern>com.extrahardmode.metrics</shadedPattern>
</relocation>
</relocations>
<!--<minimizeJar>true</minimizeJar>-->
</configuration>
</execution>
</executions>
</plugin>
<!--<plugin>-->
<!--<groupId>org.apache.maven.plugins</groupId>-->
<!--<artifactId>maven-shade-plugin</artifactId>-->
<!--<version>1.5</version>-->
<!--<executions>-->
<!--<execution>-->
<!--<phase>package</phase>-->
<!--<goals>-->
<!--<goal>shade</goal>-->
<!--</goals>-->
<!--<configuration>-->
<!--<artifactSet>-->
<!--<includes>-->
<!--<include>org.mcstats.bukkit:metrics</include>-->
<!--</includes>-->
<!--</artifactSet>-->
<!--<relocations>-->
<!--<relocation>-->
<!--<pattern>org.mcstats</pattern>-->
<!--<shadedPattern>com.extrahardmode.metrics</shadedPattern>-->
<!--</relocation>-->
<!--</relocations>-->
<!--&lt;!&ndash;<minimizeJar>true</minimizeJar>&ndash;&gt;-->
<!--</configuration>-->
<!--</execution>-->
<!--</executions>-->
<!--</plugin>-->

<!-- Use a profile to override the outputdir, e.g. to a local testserver-->
<!--<plugin>-->
Expand Down Expand Up @@ -159,11 +159,11 @@
<!--<scope>provided</scope>-->
<!--</dependency>-->
<!-- Metrics for stats -->
<dependency>
<groupId>org.mcstats.bukkit</groupId>
<artifactId>metrics</artifactId>
<version>R7</version>
</dependency>
<!--<dependency>-->
<!--<groupId>org.mcstats.bukkit</groupId>-->
<!--<artifactId>metrics</artifactId>-->
<!--<version>R7</version>-->
<!--</dependency>-->

<!-- Unit testing dependencies -->
<!-- JUnit: Assertions and test framework -->
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/extrahardmode/metrics/ConfigPlotter.java
Expand Up @@ -5,7 +5,6 @@
import com.extrahardmode.config.RootNode;
import com.extrahardmode.service.config.ConfigNode;
import org.bukkit.plugin.Plugin;
import org.mcstats.Metrics;

/**
* Output all the choosen modules to mcstats in nice plots
Expand Down

0 comments on commit 0372ea1

Please sign in to comment.