Pull up remaining assets config to root

This commit is contained in:
Chris Beams 2018-11-04 16:44:10 +01:00
parent cdff12ad9f
commit c8956567e4
No known key found for this signature in database
GPG key ID: 3D214F8F5BC5ED73
2 changed files with 12 additions and 10 deletions

View file

@ -1,9 +0,0 @@
dependencies {
compile('network.bisq.libdohj:libdohj-core:d4ace7bc') {
exclude(module: 'protobuf-java')
}
compile 'commons-codec:commons-codec:1.9'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'org.bouncycastle:bcpg-jdk15on:1.56'
testCompile 'junit:junit:4.12'
}

View file

@ -22,10 +22,21 @@ configure([project(':desktop'),
project(':relay'),
project(':seednode'),
project(':statsnode')]) {
apply plugin: 'application'
build.dependsOn installDist
installDist.destinationDir = file('build/app')
distZip.enabled = false
}
configure(project(':assets')) {
dependencies {
compile('network.bisq.libdohj:libdohj-core:d4ace7bc') {
exclude(module: 'protobuf-java')
}
compile 'commons-codec:commons-codec:1.9'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'org.bouncycastle:bcpg-jdk15on:1.56'
testCompile 'junit:junit:4.12'
}
}