From de8afd3114e1c72a0a056bf8874b667ea0fc36d9 Mon Sep 17 00:00:00 2001 From: kylejuliandev <38759683+kylejuliandev@users.noreply.github.com> Date: Tue, 28 Dec 2021 18:34:26 +0000 Subject: [PATCH] Complete upgrade to MC 1.18.1 * Update Purpur API reference to 1.18.1 * Update readme --- README.md | 2 +- build.gradle | 16 ++++------------ 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 1ff4717..142a7c4 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ This plugin maintains a local SQLite database which persists information used by ### Running the Plugin -This plugin runs on Minecraft [Purpur 1.18](https://purpurmc.org/docs/). You can download the latest version of the plugin jar through navigating the Packages section of this github repository, or using the following link [packages](https://github.com/kylejulian98/tws.management/packages). +This plugin runs on Minecraft [Purpur 1.18.1](https://purpurmc.org/docs/). You can download the latest version of the plugin jar through navigating the Packages section of this github repository, or using the following link [packages](https://github.com/kylejulian98/tws.management/packages). #### Requirements diff --git a/build.gradle b/build.gradle index 0c83d49..9bfcf70 100644 --- a/build.gradle +++ b/build.gradle @@ -29,10 +29,6 @@ repositories { maven { url 'https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core' } maven { url 'https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2' } - // Purpur main branch - // maven { url 'https://repo.pl3x.net' } - - // Purpur snapshot branch maven { url 'https://repo.purpurmc.org/snapshots' } maven { url 'https://jitpack.io' } @@ -40,9 +36,9 @@ repositories { } dependencies { - implementation 'com.fasterxml.jackson.core:jackson-core:2.13.0' - implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.0' - implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0' + implementation 'com.fasterxml.jackson.core:jackson-core:2.13.1' + implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.1' + implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.1' implementation 'org.apache.commons:commons-dbcp2:2.9.0' // Connection Pooling implementation "net.kyori:adventure-api:4.9.3" @@ -50,11 +46,7 @@ dependencies { compileOnly 'net.luckperms:api:5.3' compileOnly 'org.jetbrains:annotations:23.0.0' - // Purpur main branch - // compileOnly 'net.pl3x.purpur:purpur-api:1.17.1-R0.1-SNAPSHOT' - - // Purpur snapshot branch - compileOnly 'org.purpurmc.purpur:purpur-api:1.18-R0.1-SNAPSHOT' + compileOnly 'org.purpurmc.purpur:purpur-api:1.18.1-R0.1-SNAPSHOT' } // Patch plugin.yml file