2015-06-21 08:58:49 +02:00
|
|
|
uploadArchives {
|
|
|
|
repositories {
|
|
|
|
mavenDeployer {
|
|
|
|
pom.project {
|
2016-01-17 05:42:48 +01:00
|
|
|
name 'Jabit Repositories'
|
2015-06-21 08:58:49 +02:00
|
|
|
artifactId = 'jabit-repositories'
|
|
|
|
description 'A Java implementation of the Bitmessage protocol. This contains JDBC implementations of the repositories.'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-14 18:37:43 +02:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
2015-04-07 18:48:58 +02:00
|
|
|
dependencies {
|
2016-01-17 05:42:48 +01:00
|
|
|
compile project(':core')
|
2016-08-24 22:17:02 +02:00
|
|
|
compile 'org.flywaydb:flyway-core:4.0.3'
|
2015-10-12 12:42:11 +02:00
|
|
|
testCompile 'junit:junit:4.12'
|
2016-08-25 08:50:06 +02:00
|
|
|
testCompile 'com.h2database:h2:1.4.192'
|
2015-08-05 19:52:18 +02:00
|
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
2016-05-05 10:50:22 +02:00
|
|
|
testCompile project(path: ':core', configuration: 'testArtifacts')
|
2016-01-10 13:38:32 +01:00
|
|
|
testCompile project(':cryptography-bc')
|
2016-08-24 22:17:02 +02:00
|
|
|
}
|