24 lines
710 B
Groovy
24 lines
710 B
Groovy
uploadArchives {
|
|
repositories {
|
|
mavenDeployer {
|
|
pom.project {
|
|
name 'Jabit Repositories'
|
|
artifactId = 'jabit-repositories'
|
|
description 'A Java implementation of the Bitmessage protocol. This contains JDBC implementations of the repositories.'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
compile 'org.flywaydb:flyway-core:4.0.3'
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'com.h2database:h2:1.4.192'
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
|
testCompile project(path: ':core', configuration: 'testArtifacts')
|
|
testCompile project(':cryptography-bc')
|
|
}
|