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 2019/08/02 08:09:59 UTC

[camel-k-runtime] 02/03: dependency fix on naming '.version'

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

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

commit 39f05d91054a4e799d4ad1bc8c4531abf9480ffa
Author: Ioannis Polyzos <i....@gmail.com>
AuthorDate: Sat Jul 27 11:20:00 2019 +0100

    dependency fix on naming '.version'
---
 camel-k-runtime-core/pom.xml | 6 +++---
 pom.xml                      | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/camel-k-runtime-core/pom.xml b/camel-k-runtime-core/pom.xml
index 25d0318..e9286f3 100644
--- a/camel-k-runtime-core/pom.xml
+++ b/camel-k-runtime-core/pom.xml
@@ -66,17 +66,17 @@
         <dependency>
             <groupId>javax.xml.bind</groupId>
             <artifactId>jaxb-api</artifactId>
-            <version>${jaxb-api}</version>
+            <version>${jaxb-api.version}</version>
         </dependency>
         <dependency>
             <groupId>com.sun.xml.bind</groupId>
             <artifactId>jaxb-core</artifactId>
-            <version>${jaxb-api}</version>
+            <version>${jaxb-api.version}</version>
         </dependency>
         <dependency>
             <groupId>com.sun.xml.bind</groupId>
             <artifactId>jaxb-impl</artifactId>
-            <version>${jaxb-api}</version>
+            <version>${jaxb-api.version}</version>
         </dependency>
 
         <!-- ****************************** -->
diff --git a/pom.xml b/pom.xml
index 44af2ba..544b162 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,7 +50,7 @@
         <snakeyaml.version>1.24</snakeyaml.version>
         <spock.version>1.3-groovy-2.5</spock.version>
         <jackson.version>2.9.9</jackson.version>
-        <jaxb-api>2.3.0</jaxb-api>
+        <jaxb-api.version>2.3.0</jaxb-api.version>
         <immutables.version>2.7.5</immutables.version>
         <semver4j.version>2.2.0</semver4j.version>
         <undertow.version>1.4.26.Final</undertow.version>