Skip to content

Commit

Permalink
Now you can have as many events as you want with their own config Closes
Browse files Browse the repository at this point in the history
 #11

Implemented ACF Closes #9
Kit items are setted in the slots they were originally created Closes #5
Probably fixes #18
Fixes new items not being recognized (netherite) Closes #16
Adds max group members Closes #15
Added API for group plugins to hook into TitansBattle
  • Loading branch information
RoinujNosde committed Dec 11, 2020
1 parent 1415d44 commit b1a183f
Show file tree
Hide file tree
Showing 63 changed files with 3,060 additions and 4,767 deletions.
46 changes: 40 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>me.roinujnosde</groupId>
<artifactId>TitansBattle</artifactId>
<version>3.0.6</version>
<version>4.0.0-beta</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -13,15 +13,37 @@

<build>
<plugins>
<plugin>
<version>3.7.0</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<configuration>
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml
</dependencyReducedPomLocation>
<relocations>
<relocation>
<pattern>com.google.</pattern>
<shadedPattern>me.roinujnosde.</shadedPattern>
<pattern>com.google.gson</pattern>
<shadedPattern>me.roinujnosde.titansbattle.gson</shadedPattern>
</relocation>
<relocation>
<pattern>co.aikar.commands</pattern>
<shadedPattern>me.roinujnosde.titansbattle.acf</shadedPattern>
</relocation>
<relocation>
<pattern>co.aikar.locales</pattern>
<shadedPattern>me.roinujnosde.titansbattle.locales</shadedPattern>
</relocation>
</relocations>
</configuration>
Expand Down Expand Up @@ -51,7 +73,6 @@
<directory>${basedir}/src/main/resources</directory>
<includes>
<include>*</include>
<include>games/*</include>
</includes>
</resource>
</resources>
Expand All @@ -66,6 +87,14 @@
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>bintray-roinujnosde-bukkit-plugins</id>
<url>https://dl.bintray.com/roinujnosde/bukkit-plugins</url>
</repository>
<repository>
<id>aikar</id>
<url>https://repo.aikar.co/content/groups/aikar/</url>
</repository>
</repositories>
<dependencies>
<dependency>
Expand All @@ -74,9 +103,9 @@
<version>2.8.6</version>
</dependency>
<dependency>
<groupId>com.github.marcelo-mason</groupId>
<groupId>net.sacredlabyrinth.phaed.simpleclans</groupId>
<artifactId>SimpleClans</artifactId>
<version>2.8.1</version>
<version>2.14.4</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -115,6 +144,11 @@
<version>16.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>co.aikar</groupId>
<artifactId>acf-paper</artifactId>
<version>0.5.0-SNAPSHOT</version>
</dependency>
</dependencies>
<name>TitansBattle</name>

Expand Down
Loading

0 comments on commit b1a183f

Please sign in to comment.