We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7e57c4 commit 6722a5bCopy full SHA for 6722a5b
build.gradle
@@ -1,5 +1,6 @@
1
plugins {
2
id 'com.diffplug.spotless' version '6.25.0' apply false
3
+ id 'org.kordamp.gradle.jandex' version '2.1.0' apply false
4
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
5
id 'net.researchgate.release' version '3.0.2'
6
}
@@ -15,6 +16,7 @@ subprojects {
15
16
apply plugin: 'signing'
17
apply plugin: 'com.diffplug.spotless'
18
apply plugin: 'maven-publish'
19
+ apply plugin: 'org.kordamp.gradle.jandex'
20
21
group = groupId
22
@@ -55,6 +57,10 @@ subprojects {
55
57
tasks.named('test') {
56
58
useJUnitPlatform()
59
60
+
61
+ tasks.named("javadoc") {
62
+ inputs.files(tasks.getByPath("jandex").outputs.files)
63
+ }
64
65
66
nexusPublishing {
0 commit comments