Only changes enough to make everything work
This commit is contained in:
parent
bb0be8a3f0
commit
b4e7b8ea44
33
pom.xml
33
pom.xml
@ -2,16 +2,8 @@
|
||||
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>
|
||||
|
||||
<!-- Parent -->
|
||||
<!--<parent>
|
||||
<groupId>com.massivecraft.massivesuper</groupId>
|
||||
<artifactId>MassiveSuper</artifactId>
|
||||
<version>3.3.3</version>
|
||||
<relativePath>../MassiveSuper</relativePath>
|
||||
</parent>-->
|
||||
|
||||
<!-- Basics -->
|
||||
<groupId>net.knarcraft</groupId>
|
||||
<groupId>com.massivecraft.factions</groupId>
|
||||
<artifactId>Factions</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
@ -26,8 +18,8 @@
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
<maven.compiler.source>16</maven.compiler.source>
|
||||
<maven.compiler.target>16</maven.compiler.target>
|
||||
</properties>
|
||||
|
||||
<repositories>
|
||||
@ -36,8 +28,8 @@
|
||||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>vault-repo</id>
|
||||
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
||||
<id>jitpack.io</id>
|
||||
<url>https://jitpack.io</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>engine-hub-repo</id>
|
||||
@ -59,7 +51,7 @@
|
||||
<dependency>
|
||||
<groupId>org.spigotmc</groupId>
|
||||
<artifactId>spigot-api</artifactId>
|
||||
<version>1.19.1-R0.1-SNAPSHOT</version>
|
||||
<version>1.19.4-R0.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<!-- MassiveCore -->
|
||||
<dependency>
|
||||
@ -67,7 +59,7 @@
|
||||
<artifactId>MassiveCore</artifactId>
|
||||
<version>RELEASE</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>lib\MassiveCore.jar</systemPath>
|
||||
<systemPath>${project.basedir}\lib\MassiveCore.jar</systemPath>
|
||||
</dependency>
|
||||
<!-- WorldEdit -->
|
||||
<dependency>
|
||||
@ -93,9 +85,10 @@
|
||||
</dependency>
|
||||
<!-- Vault -->
|
||||
<dependency>
|
||||
<groupId>net.milkbowl.vault</groupId>
|
||||
<groupId>com.github.MilkBowl</groupId>
|
||||
<artifactId>VaultAPI</artifactId>
|
||||
<version>1.7</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- LWC -->
|
||||
<dependency>
|
||||
@ -103,7 +96,7 @@
|
||||
<artifactId>lwc</artifactId>
|
||||
<version>RELEASE</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>lib\LWC.jar</systemPath>
|
||||
<systemPath>${project.basedir}\lib\LWC.jar</systemPath>
|
||||
</dependency>
|
||||
<!-- PlaceholderAPI -->
|
||||
<dependency>
|
||||
@ -118,7 +111,7 @@
|
||||
<artifactId>VentureChat</artifactId>
|
||||
<version>RELEASE</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>lib\VentureChat.jar</systemPath>
|
||||
<systemPath>${project.basedir}\lib\VentureChat.jar</systemPath>
|
||||
</dependency>
|
||||
<!-- Dynmap -->
|
||||
<dependency>
|
||||
@ -146,8 +139,8 @@
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.7.0</version>
|
||||
<configuration>
|
||||
<source>17</source>
|
||||
<target>17</target>
|
||||
<source>16</source>
|
||||
<target>16</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
Loading…
Reference in New Issue
Block a user