Jabit/repositories/build.gradle

22 lines
684 B
Groovy
Raw Normal View History

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.'
}
}
}
}
dependencies {
compile project(':core')
2017-07-02 08:37:43 +02:00
compile 'org.flywaydb:flyway-core:4.2.0'
2015-10-12 12:42:11 +02:00
testCompile 'junit:junit:4.12'
2017-07-02 08:37:43 +02:00
testCompile 'com.h2database:h2:1.4.196'
testCompile 'com.nhaarman:mockito-kotlin:1.5.0'
testCompile project(path: ':core', configuration: 'testArtifacts')
testCompile project(':cryptography-bc')
}