From d3d30c3d0b12351d6126547c9696e09a393f2366 Mon Sep 17 00:00:00 2001 From: woodser Date: Fri, 16 Aug 2024 16:18:09 -0400 Subject: [PATCH] exclude jtorctl from JesusMcCloud globally --- build.gradle | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 03a970ee..ddb0b929 100644 --- a/build.gradle +++ b/build.gradle @@ -89,6 +89,10 @@ configure(subprojects) { maven { url 'https://mvnrepository.com' } } + configurations.all { + exclude group: 'com.github.JesusMcCloud', module: 'jtorctl' + } + tasks.withType(JavaCompile) { options.encoding = 'UTF-8' } @@ -318,10 +322,7 @@ configure(project(':common')) { } // override transitive dependency and use latest version from bisq - implementation(group: 'com.github.bisq-network', name: 'jtorctl') { - version { strictly "[b2a172f44edcd8deaa5ed75d936dcbb007f0d774]" } - exclude group: 'com.github.JesusMcCloud', module: 'jtorctl' - } + implementation(group: 'com.github.bisq-network', name: 'jtorctl') { version { strictly "[b2a172f44edcd8deaa5ed75d936dcbb007f0d774]" } } implementation "org.openjfx:javafx-base:$javafxVersion:$os" implementation "org.openjfx:javafx-graphics:$javafxVersion:$os" }