Skip to content

Commit

Permalink
Update to support MC 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
Blitheness committed Oct 26, 2022
1 parent a58ce3c commit fadbf70
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 20 deletions.
10 changes: 5 additions & 5 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 18 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,24 @@

<groupId>us.shirecraft</groupId>
<artifactId>EasterEggHunt</artifactId>
<version>0.4.7-SNAPSHOT</version>
<version>0.4.8-SNAPSHOT</version>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<developers>
<developer>
<name>Andy</name>
<email>[email protected]</email>
<organization>The Shire Minecraft Server</organization>
<organizationUrl>https://github.com/TheShireMinecraft</organizationUrl>
</developer>
</developers>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/Blitheness/spigot-easteregghunt/issues</url>
Expand All @@ -34,22 +44,16 @@
<url>https://maven.enginehub.org/repo/</url>
</repository>
<repository>
<id>minecraft-repo</id>
<url>https://libraries.minecraft.net/</url>
<id>papermc</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.18.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.18.2-R0.1-SNAPSHOT</version>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.19-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand All @@ -61,13 +65,13 @@
<dependency>
<groupId>com.mojang</groupId>
<artifactId>authlib</artifactId>
<version>1.5.26</version>
<version>3.11.50</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api-plugin</artifactId>
<version>2.9.2</version>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
main: us.shirecraft.easteregghunt.EasterEggHunt
name: EasterEggHunt
version: '0.4.7-SNAPSHOT'
version: '0.4.8-SNAPSHOT'
description: "Treasure hunt using WorldGuard regions"
api-version: 1.17
load: POSTWORLD
Expand Down

0 comments on commit fadbf70

Please sign in to comment.