exclude jtorctl from JesusMcCloud

This commit is contained in:
woodser 2024-08-16 14:04:07 -04:00
parent 1046caf907
commit 8cb8f9f3cf

View File

@ -316,7 +316,12 @@ configure(project(':common')) {
exclude(module: 'guava')
exclude(module: 'animal-sniffer-annotations')
}
implementation(group: 'com.github.bisq-network', name: 'jtorctl') { version { strictly "[b2a172f44edcd8deaa5ed75d936dcbb007f0d774]" } }
// 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 "org.openjfx:javafx-base:$javafxVersion:$os"
implementation "org.openjfx:javafx-graphics:$javafxVersion:$os"
}