Skip to content

Commit

Permalink
Add jandex plugin (#1211)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmini authored Dec 16, 2024
1 parent b7e57c4 commit 6722a5b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id 'com.diffplug.spotless' version '6.25.0' apply false
id 'org.kordamp.gradle.jandex' version '2.1.0' apply false
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
id 'net.researchgate.release' version '3.0.2'
}
Expand All @@ -15,6 +16,7 @@ subprojects {
apply plugin: 'signing'
apply plugin: 'com.diffplug.spotless'
apply plugin: 'maven-publish'
apply plugin: 'org.kordamp.gradle.jandex'

group = groupId

Expand Down Expand Up @@ -55,6 +57,10 @@ subprojects {
tasks.named('test') {
useJUnitPlatform()
}

tasks.named("javadoc") {
inputs.files(tasks.getByPath("jandex").outputs.files)
}
}

nexusPublishing {
Expand Down

0 comments on commit 6722a5b

Please sign in to comment.