remove java.desktop module dependency - ipscan doesn't actually use it

This commit is contained in:
Anton Keks 2022-01-21 09:56:14 +02:00
parent c02b722a0e
commit 5fc8a78915

View File

@ -32,7 +32,8 @@ version = exec("git describe --tags", ".", false) ?: "unknown"
sourceCompatibility = 11
targetCompatibility = 11
def javaModules = ["java.base", "java.desktop", "java.prefs", "java.logging", "jdk.crypto.ec"]
// TODO: stop using java.logging dependency - that also brings the xml
def javaModules = ["java.base", "java.prefs", "java.logging", "jdk.crypto.ec"]
project.ext.set("javaModules", javaModules)
sourceSets {