From 376454bef01979041b97efa4228a61f29a6999be Mon Sep 17 00:00:00 2001 From: Arshan Dabirsiaghi Date: Tue, 3 Mar 2026 18:55:16 -0500 Subject: [PATCH] Remove unused JSAP dependency flagged as LGPL JSAP (com.martiansoftware:jsap:2.1) is not imported or used anywhere in the codebase. The Maven Central artifact is labeled LGPL, which is incompatible with this project's MIT license. Remove it. Co-Authored-By: Claude Opus 4.6 --- build.gradle.kts | 1 - 1 file changed, 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2b3a074..48195ee 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -59,7 +59,6 @@ java { } dependencies { - api("com.martiansoftware:jsap:2.1") api("commons-io:commons-io:2.19.0") java11SourceSet.apiConfigurationName("commons-io:commons-io:2.19.0") testImplementation("org.junit.jupiter:junit-jupiter:5.8.1")