You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2022/08/25 15:59:26 UTC

[camel-k-runtime] branch main updated (daae5ab6 -> 90973369)

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

lburgazzoli pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


    from daae5ab6 [maven-release-plugin] prepare for next development iteration
     new 6132f354 build(deps): bump maven-pmd-plugin from 3.17.0 to 3.18.0
     new 90973369 chore: cleanup camel-k-maven-plugin dependencies

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                              |  8 +++++++-
 support/camel-k-maven-plugin/pom.xml | 29 +++++++----------------------
 2 files changed, 14 insertions(+), 23 deletions(-)


[camel-k-runtime] 02/02: chore: cleanup camel-k-maven-plugin dependencies

Posted by lb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lburgazzoli pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit 90973369d0c4e450235a72b422162ec53bfce878
Author: Luca Burgazzoli <lb...@gmail.com>
AuthorDate: Thu Aug 25 14:54:20 2022 +0200

    chore: cleanup camel-k-maven-plugin dependencies
---
 support/camel-k-maven-plugin/pom.xml | 29 +++++++----------------------
 1 file changed, 7 insertions(+), 22 deletions(-)

diff --git a/support/camel-k-maven-plugin/pom.xml b/support/camel-k-maven-plugin/pom.xml
index 93214000..21a6fd40 100644
--- a/support/camel-k-maven-plugin/pom.xml
+++ b/support/camel-k-maven-plugin/pom.xml
@@ -43,36 +43,17 @@
         <dependency>
             <groupId>org.apache.maven.plugin-tools</groupId>
             <artifactId>maven-plugin-annotations</artifactId>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.codehaus.plexus</groupId>
-                    <artifactId>plexus-utils</artifactId>
-                </exclusion>
-            </exclusions>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.maven.shared</groupId>
             <artifactId>maven-common-artifact-filters</artifactId>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.apache.maven</groupId>
-                    <artifactId>maven-repository-metadata</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.codehaus.plexus</groupId>
-                    <artifactId>plexus-utils</artifactId>
-                </exclusion>
-            </exclusions>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.maven</groupId>
             <artifactId>maven-plugin-api</artifactId>
-            <exclusions>
-                <exclusion>
-                    <groupId>*</groupId>
-                    <artifactId>*</artifactId>
-                </exclusion>
-            </exclusions>
+            <scope>provided</scope>
         </dependency>
 
         <dependency>
@@ -106,6 +87,10 @@
             <groupId>org.yaml</groupId>
             <artifactId>snakeyaml</artifactId>
         </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+        </dependency>
 
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>


[camel-k-runtime] 01/02: build(deps): bump maven-pmd-plugin from 3.17.0 to 3.18.0

Posted by lb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lburgazzoli pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit 6132f35424a88993a50d0b599f1012f6bad73bf4
Author: Luca Burgazzoli <lb...@gmail.com>
AuthorDate: Thu Aug 25 14:53:59 2022 +0200

    build(deps): bump maven-pmd-plugin from 3.17.0 to 3.18.0
---
 pom.xml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index e1cedbe3..321564a0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -77,8 +77,9 @@
         <maven-enforcer-plugin-version>3.1.0</maven-enforcer-plugin-version>
         <maven-resources-plugin-version>3.3.0</maven-resources-plugin-version>
         <maven-site-plugin-version>3.12.1</maven-site-plugin-version>
-        <maven-pmd-plugin-version>3.17.0</maven-pmd-plugin-version>
+        <maven-pmd-plugin-version>3.18.0</maven-pmd-plugin-version>
         <maven-pmd-plugin-asm-version>9.3</maven-pmd-plugin-asm-version>
+        <maven-pmd-plugin-shared-utils-version>3.3.3</maven-pmd-plugin-shared-utils-version>
         <maven-plugin-plugin-version>3.6.4</maven-plugin-plugin-version>
         <maven-version>3.6.3</maven-version>
         <maven-plugin-tools-version>3.6.4</maven-plugin-tools-version>
@@ -926,6 +927,11 @@
                                 <artifactId>asm</artifactId>
                                 <version>${maven-pmd-plugin-asm-version}</version>
                             </dependency>
+                            <dependency>
+                                <groupId>org.apache.maven.shared</groupId>
+                                <artifactId>maven-shared-utils</artifactId>
+                                <version>${maven-pmd-plugin-shared-utils-version}</version>
+                            </dependency>
                         </dependencies>
                     </plugin>
                 </plugins>