This is an automated email from the ASF dual-hosted git repository.
gnodet pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new ade562fbdc6 chore: fix build for Maven 4 (#18117)
ade562fbdc6 is described below
commit ade562fbdc6da9da8b4ae8b8053f960d26cf0537
Author: Guillaume Nodet <[email protected]>
AuthorDate: Tue May 20 14:45:12 2025 +0200
chore: fix build for Maven 4 (#18117)
Switch to Nisse extension and make sure the os.detected.classifier is a
project property, so that it can be overriden by profiles (as user properties
cannot).
---
.mvn/extensions.xml | 6 +++---
pom.xml | 2 ++
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml
index e48f2048611..64ac0040b5e 100644
--- a/.mvn/extensions.xml
+++ b/.mvn/extensions.xml
@@ -6,9 +6,9 @@
<version>4.17.9</version>
</extension>
<extension>
- <groupId>com.tisonkun.os</groupId>
- <artifactId>os-detector-maven-plugin</artifactId>
- <version>0.6.0</version>
+ <groupId>eu.maveniverse.maven.nisse</groupId>
+ <artifactId>extension</artifactId>
+ <version>0.4.4</version>
</extension>
<!-- Temporarily disabled due to INFRA-26647 -->
<!-- <extension>-->
diff --git a/pom.xml b/pom.xml
index dab93007a76..17028ae748a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -139,6 +139,8 @@
<invoker.skip>${skipTests}</invoker.skip>
<enforcer.phase>none</enforcer.phase><!-- We do not enforce with
-Dquickly, the property is overridden in the full profile -->
+
+ <os.detected.classifier>${nisse.os.classifier}</os.detected.classifier>
</properties>
<!-- Comment out the snapshot repositories as we don't need them now -->