This is an automated email from the ASF dual-hosted git repository.
dimas 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 e04499a05 Use `quarkus.package.jar.type` (#3644)
e04499a05 is described below
commit e04499a05602c7c290428aaeb7af65ac7b2219ef
Author: Dmitri Bourlatchkov <[email protected]>
AuthorDate: Tue Feb 3 13:12:28 2026 -0500
Use `quarkus.package.jar.type` (#3644)
Switch to `quarkus.package.jar.type` instead of the old
`quarkus.package.type` build property as suggested by Quarkus build warning:
```
2026-02-03T00:26:05.672955189Z WorkerExecutor Queue WARN Configuration
property 'quarkus.package.type' has been deprecated and replaced by:
[quarkus.package.jar.enabled, quarkus.package.jar.type, quarkus.native.enabled,
quarkus.native.sources-only]
```
---
runtime/admin/build.gradle.kts | 2 +-
runtime/server/build.gradle.kts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/runtime/admin/build.gradle.kts b/runtime/admin/build.gradle.kts
index eb77319ea..247650540 100644
--- a/runtime/admin/build.gradle.kts
+++ b/runtime/admin/build.gradle.kts
@@ -57,7 +57,7 @@ dependencies {
}
quarkus {
- quarkusBuildProperties.put("quarkus.package.type", "fast-jar")
+ quarkusBuildProperties.put("quarkus.package.jar.type", "fast-jar")
// Pull manifest attributes from the "main" `jar` task to get the
// release-information into the jars generated by Quarkus.
quarkusBuildProperties.putAll(
diff --git a/runtime/server/build.gradle.kts b/runtime/server/build.gradle.kts
index 2665649dc..01fac76e5 100644
--- a/runtime/server/build.gradle.kts
+++ b/runtime/server/build.gradle.kts
@@ -56,7 +56,7 @@ dependencies {
}
quarkus {
- quarkusBuildProperties.put("quarkus.package.type", "fast-jar")
+ quarkusBuildProperties.put("quarkus.package.jar.type", "fast-jar")
// Pull manifest attributes from the "main" `jar` task to get the
// release-information into the jars generated by Quarkus.
quarkusBuildProperties.putAll(