From 2a0d7eb73b953c8edacc592c90488480dcc1e50f Mon Sep 17 00:00:00 2001 From: Redned Date: Sat, 21 Sep 2019 10:14:46 -0500 Subject: [PATCH] Don't shade lombok into final jar Lombok is just an annotation processor, it doesn't need to be included in the final jar; it just need to be available at compile time. --- connector/pom.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/connector/pom.xml b/connector/pom.xml index fed5d3fd..f3d452a9 100644 --- a/connector/pom.xml +++ b/connector/pom.xml @@ -26,38 +26,44 @@ com.fasterxml.jackson.dataformat jackson-dataformat-yaml 2.9.8 + compile com.fasterxml.jackson.datatype jackson-datatype-jsr310 2.9.8 + compile io.sentry sentry 1.7.0 + compile net.minecrell terminalconsoleappender 1.0.0 jar + compile org.slf4j slf4j-api 1.7.5 + compile org.slf4j slf4j-simple 1.6.4 + compile org.projectlombok lombok 1.18.4 - compile + provided org.fusesource.jansi @@ -100,6 +106,7 @@ com.googlecode.json-simple json-simple 1.1.1 + compile com.github.steveice10