From 85e8c4992260952774fd84d87aee1f5402dae994 Mon Sep 17 00:00:00 2001 From: Nadwey Date: Sat, 11 Jan 2025 16:24:12 +0100 Subject: [PATCH] build: Don't include JetBrains annotations in the jar Shouldn't cause any issues --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index a742d48e..308aae2d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -75,7 +75,7 @@ dependencies { // For proper scheduling between Bukkit-Folia like servers, https://github.com/Anon8281/UniversalScheduler implementation("com.github.Anon8281:UniversalScheduler:0.1.3-dev") // Nice annotations, I prefer these to Lombok's, https://www.jetbrains.com/help/idea/annotating-source-code.html - implementation("org.jetbrains:annotations:16.0.2") + compileOnly("org.jetbrains:annotations:26.0.1") // MongoDB & log4j to suppress MongoDB's logger implementation("org.mongodb:mongodb-driver-sync:5.3.0-beta0") compileOnly("org.apache.logging.log4j:log4j-core:2.23.1")