You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by am...@apache.org on 2016/02/21 12:38:03 UTC

[2/3] cxf-dosgi git commit: Extract karaf.version pom property

Extract karaf.version pom property


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

Branch: refs/heads/master
Commit: e96768bc9dc3f245312add1a7bc6bd9a3ff7ef5e
Parents: c273438
Author: Amichai Rothman <am...@apache.org>
Authored: Sun Feb 21 13:32:55 2016 +0200
Committer: Amichai Rothman <am...@apache.org>
Committed: Sun Feb 21 13:35:07 2016 +0200

----------------------------------------------------------------------
 distribution/multi-bundle/pom.xml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf-dosgi/blob/e96768bc/distribution/multi-bundle/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/multi-bundle/pom.xml b/distribution/multi-bundle/pom.xml
index 5498f34..e538589 100644
--- a/distribution/multi-bundle/pom.xml
+++ b/distribution/multi-bundle/pom.xml
@@ -34,6 +34,7 @@
   <properties>
     <dosgi.version>${project.version}</dosgi.version>
     <topDirectoryLocation>../..</topDirectoryLocation>
+    <karaf.version>3.0.3</karaf.version>
   </properties>
 
   <build>
@@ -48,7 +49,7 @@
     <plugin>
         <groupId>org.apache.karaf.tooling</groupId>
         <artifactId>karaf-maven-plugin</artifactId>
-        <version>3.0.3</version>
+        <version>${karaf.version}</version>
 
         <executions>
           <execution>
@@ -60,7 +61,7 @@
             </goals>
             <configuration>
               <descriptors>
-                <descriptor>mvn:org.apache.karaf.features/standard/3.0.3/xml/features</descriptor>
+                <descriptor>mvn:org.apache.karaf.features/standard/${karaf.version}/xml/features</descriptor>
                 <descriptor>mvn:org.apache.cxf.dosgi/cxf-dosgi/${project.version}/xml/features</descriptor>
               </descriptors>
               <features>
@@ -72,7 +73,7 @@
               <resolveDefinedRepositoriesRecursively>true</resolveDefinedRepositoriesRecursively>
               <flatRepoLayout>true</flatRepoLayout>
               <mergedFeature>true</mergedFeature>
-              <karafVersion>3.0.3</karafVersion>
+              <karafVersion>${karaf.version}</karafVersion>
             </configuration>
           </execution>
         </executions>