Skip to content

Commit

Permalink
Fixes world edit being added to package.
Browse files Browse the repository at this point in the history
Removes Bstats
  • Loading branch information
ShakeforProtein committed Jul 7, 2020
1 parent 3b3adc9 commit f498ccb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.ShakeforProtein</groupId>
<artifactId>TreeboTimed</artifactId>
<version>1.0.0 - SpMc1.16.1 - WE7.2.0</version>
<version>1.0.1 - SpMc1.16.1 - WE7.2.0</version>
<packaging>jar</packaging>

<name>TreeboTimed</name>
Expand Down Expand Up @@ -43,16 +43,14 @@
</execution>
</executions>
</plugin>
<plugin>
<!--<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<!-- Do not include the <configuration>...</configuration> part if you are using Sponge! -->
<configuration>
<configuration>
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<!-- Replace this with your package! -->
<shadedPattern>me.shakeforprotein.treebotimed</shadedPattern>
</relocation>
</relocations>
Expand All @@ -65,7 +63,8 @@
</goals>
</execution>
</executions>
</plugin>
</plugin> -->

</plugins>
<resources>
<resource>
Expand All @@ -88,10 +87,10 @@
<id>enginehub-maven</id>
<url>http://maven.enginehub.org/repo/</url>
</repository>
<repository>
<!--<repository>
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public</url>
</repository>
</repository>-->
</repositories>

<dependencies>
Expand All @@ -111,13 +110,14 @@
<groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-bukkit</artifactId>
<version>7.2.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<!--<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>1.5</version>
<scope>compile</scope>
</dependency>
</dependency>-->
</dependencies>
</project>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import com.sk89q.worldedit.WorldEdit;
import me.shakeforprotein.treebotimed.Commands.*;
import me.shakeforprotein.treebotimed.Listeners.PlaceSchem;
import org.bstats.bukkit.Metrics;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.Location;
Expand Down Expand Up @@ -54,7 +53,7 @@ public void onEnable() {
}
if(getConfig().get("bstatsIntegration") != null) {
if (getConfig().getBoolean("bstatsIntegration")) {
Metrics metrics = new Metrics(this);
//Metrics metrics = new Metrics(this);
}
}
}
Expand Down

0 comments on commit f498ccb

Please sign in to comment.