You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gz...@apache.org on 2021/03/23 07:24:36 UTC

[camel-spring-boot] branch fix/starter-dsl-camel-version created (now 08b162d)

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

gzurowski pushed a change to branch fix/starter-dsl-camel-version
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git.


      at 08b162d  Use camel-version in DSL starters

This branch includes the following new commits:

     new 08b162d  Use camel-version in DSL starters

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-spring-boot] 01/01: Use camel-version in DSL starters

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

gzurowski pushed a commit to branch fix/starter-dsl-camel-version
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit 08b162dd16c8dd249bb57edbb440819a68f8e161
Author: Gregor Zurowski <gr...@zurowski.net>
AuthorDate: Tue Mar 23 08:20:34 2021 +0100

    Use camel-version in DSL starters
---
 dsl-starter/camel-java-joor-dsl-starter/pom.xml | 5 ++---
 dsl-starter/camel-xml-io-dsl-starter/pom.xml    | 5 ++---
 dsl-starter/camel-xml-jaxb-dsl-starter/pom.xml  | 5 ++---
 dsl-starter/camel-yaml-dsl-starter/pom.xml      | 5 ++---
 4 files changed, 8 insertions(+), 12 deletions(-)

diff --git a/dsl-starter/camel-java-joor-dsl-starter/pom.xml b/dsl-starter/camel-java-joor-dsl-starter/pom.xml
index 3fae6fb..4444db6 100644
--- a/dsl-starter/camel-java-joor-dsl-starter/pom.xml
+++ b/dsl-starter/camel-java-joor-dsl-starter/pom.xml
@@ -17,8 +17,7 @@
     limitations under the License.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
     <modelVersion>4.0.0</modelVersion>
 
@@ -43,7 +42,7 @@
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-java-joor-dsl</artifactId>
-            <version>${project.version}</version>
+            <version>${camel-version}</version>
         </dependency>
     </dependencies>
 </project>
\ No newline at end of file
diff --git a/dsl-starter/camel-xml-io-dsl-starter/pom.xml b/dsl-starter/camel-xml-io-dsl-starter/pom.xml
index 894c554..c66adcb 100644
--- a/dsl-starter/camel-xml-io-dsl-starter/pom.xml
+++ b/dsl-starter/camel-xml-io-dsl-starter/pom.xml
@@ -17,8 +17,7 @@
     limitations under the License.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
     <modelVersion>4.0.0</modelVersion>
 
@@ -43,7 +42,7 @@
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-xml-io-dsl</artifactId>
-            <version>${project.version}</version>
+            <version>${camel-version}</version>
         </dependency>
     </dependencies>
 </project>
\ No newline at end of file
diff --git a/dsl-starter/camel-xml-jaxb-dsl-starter/pom.xml b/dsl-starter/camel-xml-jaxb-dsl-starter/pom.xml
index 02b6e0e..41e6be6 100644
--- a/dsl-starter/camel-xml-jaxb-dsl-starter/pom.xml
+++ b/dsl-starter/camel-xml-jaxb-dsl-starter/pom.xml
@@ -17,8 +17,7 @@
     limitations under the License.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
     <modelVersion>4.0.0</modelVersion>
 
@@ -43,7 +42,7 @@
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-xml-jaxb-dsl</artifactId>
-            <version>${project.version}</version>
+            <version>${camel-version}</version>
         </dependency>
     </dependencies>
 </project>
\ No newline at end of file
diff --git a/dsl-starter/camel-yaml-dsl-starter/pom.xml b/dsl-starter/camel-yaml-dsl-starter/pom.xml
index 3ad86f1..b9fca8f 100644
--- a/dsl-starter/camel-yaml-dsl-starter/pom.xml
+++ b/dsl-starter/camel-yaml-dsl-starter/pom.xml
@@ -17,8 +17,7 @@
     limitations under the License.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
     <modelVersion>4.0.0</modelVersion>
 
@@ -43,7 +42,7 @@
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-yaml-dsl</artifactId>
-            <version>${project.version}</version>
+            <version>${camel-version}</version>
         </dependency>
     </dependencies>
 </project>
\ No newline at end of file