mirror of
https://github.com/corda/corda.git
synced 2024-12-28 00:38:55 +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 {
|
maven {
|
||||||
url 'http://ci-artifactory.corda.r3cev.com/artifactory/corda-dev'
|
url 'http://ci-artifactory.corda.r3cev.com/artifactory/corda-dev'
|
||||||
}
|
}
|
||||||
|
maven {
|
||||||
|
url 'http://ci-artifactory.corda.r3cev.com/artifactory/corda-releases'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
|
@ -30,6 +30,10 @@ artifacts {
|
|||||||
publish buildHsmJAR
|
publish buildHsmJAR
|
||||||
}
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
classifier "ignore"
|
||||||
|
}
|
||||||
|
|
||||||
publish {
|
publish {
|
||||||
name 'doorman-hsm'
|
name 'doorman-hsm'
|
||||||
disableDefaultJar = true
|
disableDefaultJar = true
|
||||||
|
@ -27,7 +27,13 @@ task buildDoormanJAR(type: FatCapsule, dependsOn: ':network-management:jar') {
|
|||||||
|
|
||||||
artifacts {
|
artifacts {
|
||||||
runtimeArtifacts buildDoormanJAR
|
runtimeArtifacts buildDoormanJAR
|
||||||
publish buildDoormanJAR
|
publish buildDoormanJAR {
|
||||||
|
classifier ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
classifier "ignore"
|
||||||
}
|
}
|
||||||
|
|
||||||
publish {
|
publish {
|
||||||
|
Loading…
Reference in New Issue
Block a user