Skip to content

Commit

Permalink
exclude jtorctl from JesusMcCloud globally
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Aug 16, 2024
1 parent 8cb8f9f commit d3d30c3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down Expand Up @@ -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"
}
Expand Down

0 comments on commit d3d30c3

Please sign in to comment.