From 185107803f82614420cdf7354bb562742e471027 Mon Sep 17 00:00:00 2001 From: SimonIT Date: Thu, 9 Jan 2020 14:16:02 +0100 Subject: [PATCH 1/5] fix craftbukkit not available, add authlib because it's not included in the bukkit dependency --- pom.xml | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 951119d..c4200a7 100644 --- a/pom.xml +++ b/pom.xml @@ -15,6 +15,14 @@ UTF-8 + + moep + https://repo.moep.tv/ + + + spigotmc-repo + https://hub.spigotmc.org/nexus/content/repositories/snapshots/ + dmulloy2-repo http://repo.dmulloy2.net/nexus/repository/public/ @@ -27,8 +35,15 @@ org.bukkit - craftbukkit - 1.12.1-R0.1-SNAPSHOT + bukkit + 1.15.1-R0.1-SNAPSHOT + provided + + + com.mojang + authlib + 1.5.25 + provided com.comphenix.protocol @@ -39,6 +54,12 @@ com.bringholm PacketInterceptor 1.0 + + + org.bukkit + craftbukkit + + com.bringholm From 8e16a48c29be2e30fc17efec2ddc0a71f8f7e5c5 Mon Sep 17 00:00:00 2001 From: SimonIT Date: Thu, 9 Jan 2020 14:22:55 +0100 Subject: [PATCH 2/5] add json-simple for metrics --- pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pom.xml b/pom.xml index c4200a7..5470d38 100644 --- a/pom.xml +++ b/pom.xml @@ -45,6 +45,11 @@ 1.5.25 provided + + com.googlecode.json-simple + json-simple + 1.1.1 + com.comphenix.protocol ProtocolLib-API From e96f8199c826c66f4251f3300b4cc455ab5bf1c2 Mon Sep 17 00:00:00 2001 From: SimonIT Date: Thu, 9 Jan 2020 16:18:30 +0100 Subject: [PATCH 3/5] change scope of ProtocolLib-API to provided, plugin must be anyway installed so no need to to compile the api --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index 5470d38..9c16f48 100644 --- a/pom.xml +++ b/pom.xml @@ -54,6 +54,7 @@ com.comphenix.protocol ProtocolLib-API 4.3.0 + provided com.bringholm From 5ca56f80c20ba549aff435a9f5f69e090ff6f60b Mon Sep 17 00:00:00 2001 From: SimonIT Date: Sat, 11 Jan 2020 14:31:46 +0100 Subject: [PATCH 4/5] build against newest ProtocolLib version --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 9c16f48..8197c3a 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ dmulloy2-repo - http://repo.dmulloy2.net/nexus/repository/public/ + https://repo.dmulloy2.net/nexus/repository/public/ alvinb-repo @@ -52,8 +52,8 @@ com.comphenix.protocol - ProtocolLib-API - 4.3.0 + ProtocolLib + 4.5.0 provided From b82791cebd2540873ab615ed567e0457e38149a0 Mon Sep 17 00:00:00 2001 From: SimonIT Date: Tue, 14 Jan 2020 22:53:33 +0100 Subject: [PATCH 5/5] provided for json-simple because it's already included in craftbukkit --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index 8197c3a..b6f10a3 100644 --- a/pom.xml +++ b/pom.xml @@ -49,6 +49,7 @@ com.googlecode.json-simple json-simple 1.1.1 + provided com.comphenix.protocol