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 2016/03/20 14:44:56 UTC

camel git commit: Fix maven-release-plugin issue

Repository: camel
Updated Branches:
  refs/heads/master 24c42aaae -> a4ea9d79b


Fix maven-release-plugin issue

Camel dependency must be expressed with project.version property for
maven-release-plugin.

Signed-off-by: Gregor Zurowski <gr...@zurowski.org>

Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a4ea9d79
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a4ea9d79
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a4ea9d79

Branch: refs/heads/master
Commit: a4ea9d79b827f4dbf031997c78028d7c2d1bc1d0
Parents: 24c42aa
Author: Gregor Zurowski <gr...@zurowski.org>
Authored: Sun Mar 20 14:44:44 2016 +0100
Committer: Gregor Zurowski <gr...@zurowski.org>
Committed: Sun Mar 20 14:44:44 2016 +0100

----------------------------------------------------------------------
 examples/camel-example-spring-boot-starter/pom.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/a4ea9d79/examples/camel-example-spring-boot-starter/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-spring-boot-starter/pom.xml b/examples/camel-example-spring-boot-starter/pom.xml
index 3c0b6f4..f89c946 100644
--- a/examples/camel-example-spring-boot-starter/pom.xml
+++ b/examples/camel-example-spring-boot-starter/pom.xml
@@ -31,7 +31,6 @@
 
   <properties>
     <spring.boot-version>${spring-boot-version}</spring.boot-version>
-    <camel-version>${project.version}</camel-version>
   </properties>
 
   <!-- import Spring-Boot and Camel BOM -->
@@ -47,7 +46,7 @@
       <dependency>
         <groupId>org.apache.camel</groupId>
         <artifactId>camel-parent</artifactId>
-        <version>${camel-version}</version>
+        <version>${project.version}</version>
         <type>pom</type>
         <scope>import</scope>
       </dependency>