updated to support 1.20.4

This commit is contained in:
Famous_Longwing 2024-02-08 21:03:29 -05:00
parent 364e056f1b
commit 09cab9a93e

45
pom.xml
View File

@ -2,9 +2,9 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
<groupId>Me.EtienneDx</groupId> <groupId>FamousL</groupId>
<artifactId>real-estate</artifactId> <artifactId>real-estate</artifactId>
<version>1.4.1</version> <version>1.0</version>
<name>RealEstate</name> <name>RealEstate</name>
<description>A spigot plugin for selling, renting and leasing GriefPrevention claims</description> <description>A spigot plugin for selling, renting and leasing GriefPrevention claims</description>
<build> <build>
@ -47,7 +47,7 @@
</excludes> </excludes>
</filter> </filter>
</filters> </filters>
<relocations> <relocations>
<relocation> <relocation>
<pattern>co.aikar.commands</pattern> <pattern>co.aikar.commands</pattern>
<shadedPattern>me.EtienneDx.RealEstate.acf</shadedPattern> <shadedPattern>me.EtienneDx.RealEstate.acf</shadedPattern>
@ -56,8 +56,9 @@
<pattern>me.EtienneDx.AnnotationConfig</pattern> <pattern>me.EtienneDx.AnnotationConfig</pattern>
<shadedPattern>me.EtienneDx.RealEstate.AnnotationConfig</shadedPattern> <shadedPattern>me.EtienneDx.RealEstate.AnnotationConfig</shadedPattern>
</relocation> </relocation>
</relocations> </relocations>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<phase>package</phase> <phase>package</phase>
@ -114,12 +115,12 @@
<repository> <repository>
<id>aikar</id> <id>aikar</id>
<url>https://repo.aikar.co/content/groups/aikar/</url> <url>https://repo.aikar.co/content/groups/aikar/</url>
</repository> </repository>
<!-- EssentialsX repo --> <repository>
<repository> <id>essentialsx</id>
<id>ess-repo</id> <name>EssentialsX API Repository</name>
<url>https://ci.ender.zone/plugin/repository/everything/</url> <url>https://repo.essentialsx.net/releases</url>
</repository> </repository>
</repositories> </repositories>
<pluginRepositories> <pluginRepositories>
<pluginRepository> <pluginRepository>
@ -131,7 +132,7 @@
<dependency> <dependency>
<groupId>org.spigotmc</groupId> <groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId> <artifactId>spigot-api</artifactId>
<version>1.18.1-R0.1-SNAPSHOT</version> <version>1.20.4-R0.1-SNAPSHOT</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
@ -146,21 +147,23 @@
<version>0.5.0-SNAPSHOT</version> <version>0.5.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.ess3</groupId> <groupId>net.essentialsx</groupId>
<artifactId>EssentialsX</artifactId> <artifactId>EssentialsX</artifactId>
<version>2.16.1</version> <version>2.20.1</version>
<scope>provided</scope> </dependency>
</dependency>
<dependency> <dependency>
<groupId>com.github.TechFortress</groupId> <groupId>com.github.TechFortress</groupId>
<artifactId>GriefPrevention</artifactId> <artifactId>GriefPrevention</artifactId>
<version>16.18</version> <version>16.18.1</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.github.EtienneDx</groupId> <groupId>com.github.EtienneDx</groupId>
<artifactId>AnnotationConfig</artifactId> <artifactId>AnnotationConfig</artifactId>
<version>e9eab24</version> <version>e9eab24</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>