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

pcongiusti 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 184fcf84fc69 chore(ci): skip non runtime modules from vuln scan
184fcf84fc69 is described below

commit 184fcf84fc697c8fd2b90cab8f4a5ec6585d259f
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Mon Feb 16 11:37:15 2026 +0100

    chore(ci): skip non runtime modules from vuln scan
---
 coverage/pom.xml   | 2 ++
 docs/pom.xml       | 3 ++-
 test-infra/pom.xml | 2 ++
 tests/pom.xml      | 2 ++
 tooling/pom.xml    | 8 +++++---
 5 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/coverage/pom.xml b/coverage/pom.xml
index 7a6db0c84f1e..e9228fddea0f 100644
--- a/coverage/pom.xml
+++ b/coverage/pom.xml
@@ -37,6 +37,8 @@
     <properties>
         <license.skip>true</license.skip>
         <enforcer.skip>true</enforcer.skip>
+        <!-- Vulnerability scan only enabled runtime modules -->
+        <dependency-check.skip>true</dependency-check.skip>
     </properties>
 
     <repositories>
diff --git a/docs/pom.xml b/docs/pom.xml
index c50fc522a7d4..8c27bdf6cfc3 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -34,9 +34,10 @@
     <properties>
         <skipOnUnsupported>true</skipOnUnsupported>
         <enforcer.phase>none</enforcer.phase><!-- Save some time -->
+        <!-- Vulnerability scan only enabled runtime modules -->
+        <dependency-check.skip>true</dependency-check.skip>
     </properties>
 
-
     <repositories>
         <repository>
             <id>atlassian</id>
diff --git a/test-infra/pom.xml b/test-infra/pom.xml
index 6d7f98cbd1b8..6a2362a4e4ec 100644
--- a/test-infra/pom.xml
+++ b/test-infra/pom.xml
@@ -32,6 +32,8 @@
     <description>Test infrastructure for Camel</description>
 
     <properties>
+        <!-- Vulnerability scan only enabled in non testing modules -->
+        <dependency-check.skip>true</dependency-check.skip>
         <assembly.skipAssembly>true</assembly.skipAssembly>
     </properties>
 
diff --git a/tests/pom.xml b/tests/pom.xml
index ef08e8c3f2ec..3bfcedf9419f 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -34,6 +34,8 @@
     <packaging>pom</packaging>
 
     <properties>
+        <!-- Vulnerability scan only enabled runtime modules -->
+        <dependency-check.skip>true</dependency-check.skip>
     </properties>
 
     <modules>
diff --git a/tooling/pom.xml b/tooling/pom.xml
index 0b820065f58b..cd472733f8b7 100644
--- a/tooling/pom.xml
+++ b/tooling/pom.xml
@@ -33,6 +33,11 @@
     <name>Camel :: Tooling</name>
     <description>Camel Tooling</description>
 
+    <properties>
+        <!-- Vulnerability scan only enabled in runtime modules -->
+        <dependency-check.skip>true</dependency-check.skip>
+    </properties>
+
     <modules>
         <module>parent</module>
         <module>spi-annotations</module>
@@ -44,7 +49,4 @@
         <module>camel-tooling-maven</module>
         <module>enforcer-rules</module>
     </modules>
-
-    <properties>
-    </properties>
 </project>

Reply via email to