This is an automated email from the ASF dual-hosted git repository.
snazy 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 5320af56 Build: task dependencies for admin tool (#745)
5320af56 is described below
commit 5320af566a8829e39a55b59d6d309e7c326ad5ae
Author: Robert Stupp <[email protected]>
AuthorDate: Tue Jan 14 15:03:22 2025 +0100
Build: task dependencies for admin tool (#745)
---
quarkus/admin/build.gradle.kts | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/quarkus/admin/build.gradle.kts b/quarkus/admin/build.gradle.kts
index f96066c3..fc813333 100644
--- a/quarkus/admin/build.gradle.kts
+++ b/quarkus/admin/build.gradle.kts
@@ -21,6 +21,7 @@ import io.quarkus.gradle.tasks.QuarkusBuild
plugins {
alias(libs.plugins.quarkus)
+ alias(libs.plugins.jandex)
alias(libs.plugins.openapi.generator)
id("polaris-server")
id("polaris-license-report")
@@ -75,3 +76,11 @@ publishing {
}
}
}
+
+tasks.named("compileJava") { dependsOn("compileQuarkusGeneratedSourcesJava") }
+
+tasks.named("sourcesJar") { dependsOn("compileQuarkusGeneratedSourcesJava") }
+
+tasks.named("javadoc") { dependsOn("jandex") }
+
+tasks.named("quarkusDependenciesBuild") { dependsOn("jandex") }