File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
tools/corda-runtime-gradle-plugin Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 11plugins {
22 id ' java-gradle-plugin'
3+ id ' corda.javadoc-generation'
34 id ' com.r3.internal.gradle.plugins.r3Publish'
45 id ' org.jetbrains.kotlin.jvm'
5- id ' corda.javadoc-generation'
66}
77
88ext {
@@ -37,13 +37,20 @@ gradlePlugin {
3737 id = ' net.corda.gradle.plugin'
3838 implementationClass = ' net.corda.gradle.plugin.CordaRuntimeGradlePlugin'
3939 displayName = ' corda-runtime-gradle-plugin'
40+ description = ' A Gradle plugin that wraps a subset of the SDK functions to facilitate their use in developer and CI scenarios.'
4041 }
4142 }
4243 automatedPublishing = true
4344}
4445
4546publishing {
4647 publications {
48+ mavenJava(MavenPublication ) {
49+ from components. java
50+ artifact(javadocJar) {
51+ classifier " javadoc"
52+ }
53+ }
4754 configureEach {
4855 pom {
4956 name = ' corda-runtime-gradle-plugin'
You can’t perform that action at this time.
0 commit comments