18 lines
508 B
Groovy
18 lines
508 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.'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':domain')
|
|
compile 'com.h2database:h2:1.4.187'
|
|
compile 'org.flywaydb:flyway-core:3.2.1'
|
|
testCompile 'junit:junit:4.11'
|
|
} |