Skip to content

Commit

Permalink
Initial Commit: The basic structure of the plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildTools committed Apr 21, 2022
1 parent 36ab19a commit 01a7c76
Show file tree
Hide file tree
Showing 4 changed files with 850 additions and 31 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ pom.xml.versionsBackup
pom.xml.next

release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar
Expand Down
29 changes: 0 additions & 29 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,28 +45,6 @@
</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>
<shadedPattern>me.tud.diskuise</shadedPattern>
</relocation>
</relocations>
<outputDirectory>D:\Minecraft\Servers\diskuise\plugins</outputDirectory>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
Expand All @@ -76,7 +54,6 @@
</resources>
</build>


<repositories>
<repository>
<id>spigotmc-repo</id>
Expand Down Expand Up @@ -114,12 +91,6 @@
<version>2.6.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>3.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/tud/diskuise/Diskuise.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import ch.njol.skript.Skript;
import ch.njol.skript.SkriptAddon;
import me.libraryaddict.disguise.DisguiseAPI;
import org.bstats.bukkit.Metrics;
import me.tud.diskuise.utils.Metrics;
import org.bukkit.Bukkit;
import org.bukkit.entity.Player;
import org.bukkit.plugin.java.JavaPlugin;
Expand Down
Loading

0 comments on commit 01a7c76

Please sign in to comment.