Skip to content

Commit 7ed2567

Browse files
committed
[Build] Add imgui-app javadoc to release
1 parent b3dda59 commit 7ed2567

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

imgui-app/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,19 @@ task sourcesJar(type: Jar, dependsOn: classes) {
4343
from sourceSets.main.allSource
4444
}
4545

46+
task javadocJar(type: Jar, dependsOn: javadoc) {
47+
archiveClassifier.set('javadoc')
48+
from javadoc.destinationDir
49+
}
50+
4651
publishing {
4752
publications {
4853
MyPublication(MavenPublication) {
4954
from components.java
5055
groupId 'io.imgui.java'
5156
artifactId 'imgui-java-app'
5257
artifact sourcesJar
58+
artifact javadocJar
5359
version property('version')
5460
}
5561
}

0 commit comments

Comments
 (0)