Re-added corda capsule publication.

This commit is contained in:
Clinton Alexander 2016-12-01 16:18:47 +00:00 committed by Clinton Alexander
parent 39a34c7bf6
commit 348092cfa6

View File

@ -219,6 +219,26 @@ bintray {
}
}
bintray {
user = System.getenv('CORDA_BINTRAY_USER')
key = System.getenv('CORDA_BINTRAY_KEY')
publications = ['corda']
dryRun = false
pkg {
repo = 'corda'
name = 'corda'
userOrg = 'r3'
licenses = ['Apache-2.0']
version {
gpg {
sign = true
passphrase = System.getenv('CORDA_BINTRAY_GPG_PASSPHRASE')
}
}
}
}
publishing {
publications {
node(MavenPublication) {
@ -263,6 +283,34 @@ publishing {
artifact buildCordaJAR {
classifier ""
}
pom.withXml {
asNode().children().last() + {
resolveStrategy = Closure.DELEGATE_FIRST
name 'corda'
description 'Corda standalone node'
url 'https://github.com/corda/corda'
scm {
url 'https://github.com/corda/corda'
}
licenses {
license {
name 'Apache-2.0'
url 'https://www.apache.org/licenses/LICENSE-2.0'
distribution 'repo'
}
}
developers {
developer {
id 'R3'
name 'R3'
email 'dev@corda.net'
}
}
}
}
}
}
}
}