Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor (v4.0) #376

Draft
wants to merge 15 commits into
base: master
Choose a base branch
from
11 changes: 3 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonar.organization>chancesd</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<revision>3.18.13</revision>
<revision>4.0-SNAPSHOT</revision>
</properties>

<distributionManagement>
Expand Down Expand Up @@ -51,10 +51,6 @@
<allowMajorUpdates>true</allowMajorUpdates>
<allowMinorUpdates>true</allowMinorUpdates>
<allowSnapshots>true</allowSnapshots>
<excludes>
<exclude>com.massivecraft:FactionsUUID</exclude>
<exclude>com.massivecraft:MassiveCore</exclude>
</excludes>
</configuration>
<phase>post-clean</phase>
<goals>
Expand All @@ -75,9 +71,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<optimize>true</optimize>
<source>17</source>
<target>17</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
Expand Down
56 changes: 38 additions & 18 deletions pvpmanager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<version>${revision}</version>
</parent>

<groupId>me.NoChance.PvPManager</groupId> <!--keep this groupid for now while the java package isn't changed -->
<artifactId>pvpmanager</artifactId>
<packaging>jar</packaging>

Expand Down Expand Up @@ -59,6 +58,12 @@
<url>https://repo.md-5.net/content/groups/public/</url>
</repository>

<!-- TAB -->
<repository>
<id>krypton</id>
<url>https://repo.kryptonmc.org/releases</url>
</repository>

<repository>
<id>codemc-repo</id>
<url>https://repo.codemc.org/repository/maven-public</url>
Expand Down Expand Up @@ -202,6 +207,14 @@
</exclusions>
</dependency>

<!-- TAB -->
<dependency>
<groupId>me.neznamy</groupId>
<artifactId>tab-api</artifactId>
<version>4.0.2</version>
<scope>provided</scope>
</dependency>

<!-- Towny -->
<dependency>
<groupId>com.github.TownyAdvanced</groupId>
Expand Down Expand Up @@ -232,24 +245,13 @@
<scope>provided</scope>
</dependency>

<!-- Database -->
<!-- GriefPrevention -->
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>4.0.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.45.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.23.1</version>
<groupId>com.github.TechFortress</groupId>
<artifactId>GriefPrevention</artifactId>
<version>16.14.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>

<!-- Unit Tests -->
Expand All @@ -271,6 +273,24 @@
<version>5.12.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>5.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.45.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.23.1</version>
<scope>test</scope>
</dependency>

<!-- Internal -->
<dependency>
Expand All @@ -281,7 +301,7 @@
<dependency>
<groupId>me.chancesd.sdutils</groupId>
<artifactId>sdutils</artifactId>
<version>1.2-SNAPSHOT</version>
<version>1.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>

This file was deleted.

This file was deleted.

67 changes: 0 additions & 67 deletions pvpmanager/src/main/java/me/NoChance/PvPManager/Commands/Tag.java

This file was deleted.

This file was deleted.

This file was deleted.