Skip to content

Commit 4eb66c9

Browse files
authored
ES-2384: Include marker pom description (#6157)
1 parent 4881fe9 commit 4eb66c9

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

tools/corda-runtime-gradle-plugin/build.gradle

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
plugins {
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

88
ext {
@@ -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

4546
publishing {
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'

0 commit comments

Comments
 (0)