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:57 UTC

[camel-k-runtime] branch master updated (9558a71 -> a3de4dd)

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

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


    from 9558a71  Allow endpoint DSL in Camel k #122
     new 0b576e9  add maven dependencies for the java.xml.bind (jaxb) module #103
     new 39f05d9  dependency fix on naming '.version'
     new a3de4dd  upgrade version to 2.3.1

The 3 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:
 camel-k-runtime-core/pom.xml | 16 ++++++++++++++++
 pom.xml                      |  2 ++
 2 files changed, 18 insertions(+)


[camel-k-runtime] 01/03: add maven dependencies for the java.xml.bind (jaxb) module #103

Posted by lb...@apache.org.
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 0b576e98b7f04168df2f35e4a7a5d826c5caa07d
Author: Ioannis Polyzos <i....@gmail.com>
AuthorDate: Fri Jul 26 17:41:58 2019 +0100

    add maven dependencies for the java.xml.bind (jaxb) module #103
---
 camel-k-runtime-core/pom.xml | 16 ++++++++++++++++
 pom.xml                      |  1 +
 2 files changed, 17 insertions(+)

diff --git a/camel-k-runtime-core/pom.xml b/camel-k-runtime-core/pom.xml
index de75da4..25d0318 100644
--- a/camel-k-runtime-core/pom.xml
+++ b/camel-k-runtime-core/pom.xml
@@ -63,6 +63,22 @@
             <version>${commons-io.version}</version>
         </dependency>
 
+        <dependency>
+            <groupId>javax.xml.bind</groupId>
+            <artifactId>jaxb-api</artifactId>
+            <version>${jaxb-api}</version>
+        </dependency>
+        <dependency>
+            <groupId>com.sun.xml.bind</groupId>
+            <artifactId>jaxb-core</artifactId>
+            <version>${jaxb-api}</version>
+        </dependency>
+        <dependency>
+            <groupId>com.sun.xml.bind</groupId>
+            <artifactId>jaxb-impl</artifactId>
+            <version>${jaxb-api}</version>
+        </dependency>
+
         <!-- ****************************** -->
         <!--                                -->
         <!-- TESTS                          -->
diff --git a/pom.xml b/pom.xml
index b8d9a18..44af2ba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,6 +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>
         <immutables.version>2.7.5</immutables.version>
         <semver4j.version>2.2.0</semver4j.version>
         <undertow.version>1.4.26.Final</undertow.version>


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

Posted by lb...@apache.org.
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>


[camel-k-runtime] 03/03: upgrade version to 2.3.1

Posted by lb...@apache.org.
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 a3de4ddb465a220807a3e0d732916d422d025ec3
Author: Ioannis Polyzos <i....@gmail.com>
AuthorDate: Sat Jul 27 11:40:15 2019 +0100

    upgrade version to 2.3.1
---
 camel-k-runtime-core/pom.xml | 2 +-
 pom.xml                      | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/camel-k-runtime-core/pom.xml b/camel-k-runtime-core/pom.xml
index e9286f3..75d8719 100644
--- a/camel-k-runtime-core/pom.xml
+++ b/camel-k-runtime-core/pom.xml
@@ -71,7 +71,7 @@
         <dependency>
             <groupId>com.sun.xml.bind</groupId>
             <artifactId>jaxb-core</artifactId>
-            <version>${jaxb-api.version}</version>
+            <version>${jaxb-core.version}</version>
         </dependency>
         <dependency>
             <groupId>com.sun.xml.bind</groupId>
diff --git a/pom.xml b/pom.xml
index 544b162..dfacccc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -51,6 +51,7 @@
         <spock.version>1.3-groovy-2.5</spock.version>
         <jackson.version>2.9.9</jackson.version>
         <jaxb-api.version>2.3.0</jaxb-api.version>
+        <jaxb-core.version>2.3.0.1</jaxb-core.version>
         <immutables.version>2.7.5</immutables.version>
         <semver4j.version>2.2.0</semver4j.version>
         <undertow.version>1.4.26.Final</undertow.version>