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-04-07 18:48:58 +02:00
|
|
|
dependencies {
|
2016-01-17 05:42:48 +01:00
|
|
|
compile project(':core')
|
2017-07-02 11:46:27 +02:00
|
|
|
compile 'org.flywaydb:flyway-core'
|
|
|
|
testCompile 'junit:junit'
|
|
|
|
testCompile 'com.h2database:h2'
|
|
|
|
testCompile 'com.nhaarman:mockito-kotlin'
|
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
|
|
|
}
|