Skip to content

Commit

Permalink
Update jandex and add its to dependency to 'imageBuild"'
Browse files Browse the repository at this point in the history
  • Loading branch information
Malte-Hansen committed Dec 4, 2024
1 parent b1fac00 commit 254f838
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'java'
id 'io.quarkus'
id 'com.adarshr.test-logger' version '3.2.0'
id "org.kordamp.gradle.jandex" version "1.1.0"
id "org.kordamp.gradle.jandex" version "2.0.0"
}

apply from: 'code-analysis/code-analysis.gradle'
Expand Down Expand Up @@ -102,6 +102,10 @@ configurations {
// Regarding jandex dependency for each task
// https://github.com/kordamp/jandex-gradle-plugin/issues/9

tasks.named('imageBuild') {
dependsOn 'jandex'
}

tasks.named('checkstyleMain') {
dependsOn 'jandex'
}
Expand Down

0 comments on commit 254f838

Please sign in to comment.