Only changes enough to make everything work

This commit is contained in:
Kristian Knarvik 2023-04-01 14:52:14 +02:00
parent bb0be8a3f0
commit b4e7b8ea44
103 changed files with 2003 additions and 2010 deletions

33
pom.xml
View File

@ -2,16 +2,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<!-- Parent -->
<!--<parent>
<groupId>com.massivecraft.massivesuper</groupId>
<artifactId>MassiveSuper</artifactId>
<version>3.3.3</version>
<relativePath>../MassiveSuper</relativePath>
</parent>-->
<!-- Basics --> <!-- Basics -->
<groupId>net.knarcraft</groupId> <groupId>com.massivecraft.factions</groupId>
<artifactId>Factions</artifactId> <artifactId>Factions</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
@ -26,8 +18,8 @@
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source> <maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target> <maven.compiler.target>16</maven.compiler.target>
</properties> </properties>
<repositories> <repositories>
@ -36,8 +28,8 @@
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository> </repository>
<repository> <repository>
<id>vault-repo</id> <id>jitpack.io</id>
<url>http://nexus.hc.to/content/repositories/pub_releases</url> <url>https://jitpack.io</url>
</repository> </repository>
<repository> <repository>
<id>engine-hub-repo</id> <id>engine-hub-repo</id>
@ -59,7 +51,7 @@
<dependency> <dependency>
<groupId>org.spigotmc</groupId> <groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId> <artifactId>spigot-api</artifactId>
<version>1.19.1-R0.1-SNAPSHOT</version> <version>1.19.4-R0.1-SNAPSHOT</version>
</dependency> </dependency>
<!-- MassiveCore --> <!-- MassiveCore -->
<dependency> <dependency>
@ -67,7 +59,7 @@
<artifactId>MassiveCore</artifactId> <artifactId>MassiveCore</artifactId>
<version>RELEASE</version> <version>RELEASE</version>
<scope>system</scope> <scope>system</scope>
<systemPath>lib\MassiveCore.jar</systemPath> <systemPath>${project.basedir}\lib\MassiveCore.jar</systemPath>
</dependency> </dependency>
<!-- WorldEdit --> <!-- WorldEdit -->
<dependency> <dependency>
@ -93,9 +85,10 @@
</dependency> </dependency>
<!-- Vault --> <!-- Vault -->
<dependency> <dependency>
<groupId>net.milkbowl.vault</groupId> <groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId> <artifactId>VaultAPI</artifactId>
<version>1.7</version> <version>1.7</version>
<scope>provided</scope>
</dependency> </dependency>
<!-- LWC --> <!-- LWC -->
<dependency> <dependency>
@ -103,7 +96,7 @@
<artifactId>lwc</artifactId> <artifactId>lwc</artifactId>
<version>RELEASE</version> <version>RELEASE</version>
<scope>system</scope> <scope>system</scope>
<systemPath>lib\LWC.jar</systemPath> <systemPath>${project.basedir}\lib\LWC.jar</systemPath>
</dependency> </dependency>
<!-- PlaceholderAPI --> <!-- PlaceholderAPI -->
<dependency> <dependency>
@ -118,7 +111,7 @@
<artifactId>VentureChat</artifactId> <artifactId>VentureChat</artifactId>
<version>RELEASE</version> <version>RELEASE</version>
<scope>system</scope> <scope>system</scope>
<systemPath>lib\VentureChat.jar</systemPath> <systemPath>${project.basedir}\lib\VentureChat.jar</systemPath>
</dependency> </dependency>
<!-- Dynmap --> <!-- Dynmap -->
<dependency> <dependency>
@ -146,8 +139,8 @@
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version> <version>3.7.0</version>
<configuration> <configuration>
<source>17</source> <source>16</source>
<target>17</target> <target>16</target>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>