Christian Basler
511b3c1754
- this should avoid dead locks, specifically when connecting to Jabit :/ - also, Java 8 features are now allowed in modules not needed by Android clients
22 lines
630 B
Groovy
22 lines
630 B
Groovy
uploadArchives {
|
|
repositories {
|
|
mavenDeployer {
|
|
pom.project {
|
|
name 'Jabit Domain'
|
|
artifactId = 'jabit-repositories'
|
|
description 'A Java implementation of the Bitmessage protocol. This contains JDBC implementations of the repositories.'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
dependencies {
|
|
compile project(':domain')
|
|
compile 'org.flywaydb:flyway-core:3.2.1'
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'com.h2database:h2:1.4.190'
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
|
testCompile project(':security-bc')
|
|
} |