mirror of
https://github.com/corda/corda.git
synced 2025-01-18 02:39:51 +00:00
Added corda capsule to output of publish.
This commit is contained in:
parent
f13a21cc6c
commit
4cdb4352b6
17
build.gradle
17
build.gradle
@ -244,4 +244,21 @@ task installTemplateNodes(dependsOn: 'buildCordaJAR') << {
|
||||
into "${buildDir}/nodes"
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
task cordaJar(type: Jar, dependsOn: 'buildCordaJAR') {
|
||||
classifier = 'sources'
|
||||
from buildCordaJAR.outputs.getFiles()
|
||||
}
|
||||
|
||||
// TODO: Rename capsule to "corda"
|
||||
publishing {
|
||||
publications {
|
||||
corda(MavenPublication) {
|
||||
from components.java
|
||||
artifactId 'corda'
|
||||
|
||||
artifact buildCordaJAR
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user