Skip to content

Commit 6722a5b

Browse files
authored
Add jandex plugin (#1211)
1 parent b7e57c4 commit 6722a5b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: build.gradle

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
plugins {
22
id 'com.diffplug.spotless' version '6.25.0' apply false
3+
id 'org.kordamp.gradle.jandex' version '2.1.0' apply false
34
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
45
id 'net.researchgate.release' version '3.0.2'
56
}
@@ -15,6 +16,7 @@ subprojects {
1516
apply plugin: 'signing'
1617
apply plugin: 'com.diffplug.spotless'
1718
apply plugin: 'maven-publish'
19+
apply plugin: 'org.kordamp.gradle.jandex'
1820

1921
group = groupId
2022

@@ -55,6 +57,10 @@ subprojects {
5557
tasks.named('test') {
5658
useJUnitPlatform()
5759
}
60+
61+
tasks.named("javadoc") {
62+
inputs.files(tasks.getByPath("jandex").outputs.files)
63+
}
5864
}
5965

6066
nexusPublishing {

0 commit comments

Comments
 (0)