Added all artifacts required for the corda capsule to be published on maven central.

This commit is contained in:
Clinton Alexander 2016-12-01 17:28:13 +00:00 committed by Clinton Alexander
parent 810596927e
commit c8e14b0ac6

View File

@ -8,7 +8,15 @@ apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.bintray'
repositories {
mavenLocal()
mavenCentral()
maven {
url 'http://oss.sonatype.org/content/repositories/snapshots'
}
jcenter()
maven {
url 'https://dl.bintray.com/kotlin/exposed'
}
}
configurations {
@ -91,6 +99,8 @@ publishing {
corda(MavenPublication) {
artifactId 'corda'
artifact sourceJar
artifact javadocJar
artifact buildCordaJAR {
classifier ""
}