You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ts...@apache.org on 2021/02/18 05:51:25 UTC

[camel-karaf-examples] branch fix-plugin-version-warnings created (now 4e3f60f)

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

tsato pushed a change to branch fix-plugin-version-warnings
in repository https://gitbox.apache.org/repos/asf/camel-karaf-examples.git.


      at 4e3f60f  Fix plugin version warnings

This branch includes the following new commits:

     new 4e3f60f  Fix plugin version warnings

The 1 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.



[camel-karaf-examples] 01/01: Fix plugin version warnings

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

tsato pushed a commit to branch fix-plugin-version-warnings
in repository https://gitbox.apache.org/repos/asf/camel-karaf-examples.git

commit 4e3f60fb5b3382626565a4b24ce4e999c0d5a734
Author: Tadayoshi Sato <sa...@gmail.com>
AuthorDate: Thu Feb 18 14:50:46 2021 +0900

    Fix plugin version warnings
---
 examples/pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/examples/pom.xml b/examples/pom.xml
index c2cf00a..6d7fa1e 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -112,8 +112,10 @@
         <!-- Versions -->
         <arquillian-version>1.5.0.Final</arquillian-version>
         <asciidoctorj-version>2.1.0</asciidoctorj-version>
+        <build-helper-maven-plugin-version>3.2.0</build-helper-maven-plugin-version>
         <camel-bundle-plugin-version>${camel.version}</camel-bundle-plugin-version>
         <cdi-api-1.2-version>1.2</cdi-api-1.2-version>
+        <depends-maven-plugin-version>1.4.0</depends-maven-plugin-version>
         <glassfish-jaxb-runtime-version>${jakarta-jaxb-version}</glassfish-jaxb-runtime-version>
         <groovy-version>3.0.2</groovy-version>
         <pax-exam-version>4.13.2</pax-exam-version>
@@ -554,6 +556,18 @@
                     <artifactId>exec-maven-plugin</artifactId>
                     <version>${exec-maven-plugin-version}</version>
                 </plugin>
+
+                <plugin>
+                    <groupId>org.codehaus.mojo</groupId>
+                    <artifactId>build-helper-maven-plugin</artifactId>
+                    <version>${build-helper-maven-plugin-version}</version>
+                </plugin>
+
+                <plugin>
+                    <groupId>org.apache.servicemix.tooling</groupId>
+                    <artifactId>depends-maven-plugin</artifactId>
+                    <version>${depends-maven-plugin-version}</version>
+                </plugin>
             </plugins>
         </pluginManagement>
     </build>