mirror of
https://github.com/corda/corda.git
synced 2024-12-26 16:11:12 +00:00
ENT-1216: Various fixes to the doorman publishing that allows doorman (#164)
* Added corda release bucket to allow resolving gradle plugins from teamcity. * Fixed the classifiers for doorman jar to ensure the correct one is published.
This commit is contained in:
parent
c794f8418c
commit
b1bac9e103
@ -22,6 +22,9 @@ repositories {
|
||||
maven {
|
||||
url 'http://ci-artifactory.corda.r3cev.com/artifactory/corda-dev'
|
||||
}
|
||||
maven {
|
||||
url 'http://ci-artifactory.corda.r3cev.com/artifactory/corda-releases'
|
||||
}
|
||||
}
|
||||
|
||||
configurations {
|
||||
|
@ -30,6 +30,10 @@ artifacts {
|
||||
publish buildHsmJAR
|
||||
}
|
||||
|
||||
jar {
|
||||
classifier "ignore"
|
||||
}
|
||||
|
||||
publish {
|
||||
name 'doorman-hsm'
|
||||
disableDefaultJar = true
|
||||
|
@ -27,7 +27,13 @@ task buildDoormanJAR(type: FatCapsule, dependsOn: ':network-management:jar') {
|
||||
|
||||
artifacts {
|
||||
runtimeArtifacts buildDoormanJAR
|
||||
publish buildDoormanJAR
|
||||
publish buildDoormanJAR {
|
||||
classifier ""
|
||||
}
|
||||
}
|
||||
|
||||
jar {
|
||||
classifier "ignore"
|
||||
}
|
||||
|
||||
publish {
|
||||
|
Loading…
Reference in New Issue
Block a user