This is an automated email from the ASF dual-hosted git repository.

adutra pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git


The following commit(s) were added to refs/heads/main by this push:
     new 5b58c3317 Gradle/Quarkus: make imageBuild task depend on jandex (#1290)
5b58c3317 is described below

commit 5b58c3317382caa7bc3e3fe6c3866a02fcf15acf
Author: Alexandre Dutra <[email protected]>
AuthorDate: Wed Apr 2 16:17:11 2025 +0200

    Gradle/Quarkus: make imageBuild task depend on jandex (#1290)
---
 build-logic/src/main/kotlin/polaris-quarkus.gradle.kts | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/build-logic/src/main/kotlin/polaris-quarkus.gradle.kts 
b/build-logic/src/main/kotlin/polaris-quarkus.gradle.kts
index 17d446d28..b171fed52 100644
--- a/build-logic/src/main/kotlin/polaris-quarkus.gradle.kts
+++ b/build-logic/src/main/kotlin/polaris-quarkus.gradle.kts
@@ -69,3 +69,5 @@ tasks.named("sourcesJar") { 
dependsOn("compileQuarkusGeneratedSourcesJava") }
 tasks.named("javadoc") { dependsOn("jandex") }
 
 tasks.named("quarkusDependenciesBuild") { dependsOn("jandex") }
+
+tasks.named("imageBuild") { dependsOn("jandex") }

Reply via email to