2017-07-21 10:27:20 +02:00
|
|
|
uploadArchives {
|
|
|
|
repositories {
|
|
|
|
mavenDeployer {
|
|
|
|
pom.project {
|
|
|
|
name 'Jabit Exports'
|
|
|
|
artifactId = 'jabit-exports'
|
|
|
|
description 'Import and export data to JSON files.'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':core')
|
|
|
|
compile 'org.slf4j:slf4j-api'
|
|
|
|
compile 'com.beust:klaxon'
|
|
|
|
|
2017-11-21 10:44:41 +01:00
|
|
|
testCompile 'com.nhaarman:mockito-kotlin'
|
2018-02-20 14:04:40 +01:00
|
|
|
testCompile 'org.junit.jupiter:junit-jupiter-api'
|
|
|
|
testRuntime 'org.junit.jupiter:junit-jupiter-engine'
|
|
|
|
|
2017-07-21 10:27:20 +02:00
|
|
|
testCompile project(path: ':core', configuration: 'testArtifacts')
|
|
|
|
testCompile project(':cryptography-bc')
|
|
|
|
}
|