mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
Further expanded example build.gradle.
This commit is contained in:
parent
8816fb35ea
commit
bb299de9e1
@ -176,6 +176,19 @@ To build against Corda and the plugins that cordapps use, update your build.grad
|
||||
// Sets the classes for Quasar to scan. Loaded by the the quasar-utils plugin.
|
||||
quasarScan.dependsOn('classes', ... your dependent subprojects...)
|
||||
|
||||
// Standard way to publish Cordapps to maven local with the maven-publish and publish-utils plugin.
|
||||
publishing {
|
||||
publications {
|
||||
jarAndSources(MavenPublication) {
|
||||
from components.java
|
||||
// The two lines below are the tasks added by this plugin.
|
||||
artifact sourceJar
|
||||
artifact javadocJar
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Cordformation
|
||||
=============
|
||||
|
Loading…
Reference in New Issue
Block a user