Skip to content

Commit

Permalink
Merge pull request #6521 from alvasw/gradle_assets_module_build_gradle
Browse files Browse the repository at this point in the history
Create build.gradle for assets module
  • Loading branch information
alejandrogarcia83 committed Jan 17, 2023
2 parents 10dd102 + 4ab4d67 commit b7d72a3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 18 deletions.
14 changes: 14 additions & 0 deletions assets/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
dependencies {
implementation(libs.bitcoinj) {
exclude(module: 'bcprov-jdk15on')
exclude(module: 'guava')
exclude(module: 'jsr305')
exclude(module: 'okhttp')
exclude(module: 'okio')
exclude(module: 'protobuf-java')
exclude(module: 'slf4j-api')
}
implementation libs.google.guava
implementation libs.apache.commons.lang3
implementation libs.slf4j.api
}
18 changes: 0 additions & 18 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -129,24 +129,6 @@ configure([project(':cli'),
}


configure(project(':assets')) {
dependencies {
implementation(libs.bitcoinj) {
exclude(module: 'bcprov-jdk15on')
exclude(module: 'guava')
exclude(module: 'jsr305')
exclude(module: 'okhttp')
exclude(module: 'okio')
exclude(module: 'protobuf-java')
exclude(module: 'slf4j-api')
}
implementation libs.google.guava
implementation libs.apache.commons.lang3
implementation libs.slf4j.api
}
}


configure(project(':common')) {
apply plugin: 'org.openjfx.javafxplugin'

Expand Down

0 comments on commit b7d72a3

Please sign in to comment.