You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ri...@apache.org on 2010/05/27 20:44:37 UTC

svn commit: r948944 - /felix/trunk/main.distribution/pom.xml

Author: rickhall
Date: Thu May 27 18:44:37 2010
New Revision: 948944

URL: http://svn.apache.org/viewvc?rev=948944&view=rev
Log:
Modify framework distribution to include Gogo shell.

Modified:
    felix/trunk/main.distribution/pom.xml

Modified: felix/trunk/main.distribution/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/main.distribution/pom.xml?rev=948944&r1=948943&r2=948944&view=diff
==============================================================================
--- felix/trunk/main.distribution/pom.xml (original)
+++ felix/trunk/main.distribution/pom.xml Thu May 27 18:44:37 2010
@@ -20,7 +20,7 @@
  <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix-parent</artifactId>
-    <version>1.2.0</version>
+    <version>1.2.1</version>
     <relativePath>../pom/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
@@ -28,33 +28,12 @@
   <name>Apache Felix Main Distribution</name>
   <artifactId>org.apache.felix.main.distribution</artifactId>
   <version>2.1.0-SNAPSHOT</version>
-  <dependencies>
-    <dependency>
-      <groupId>${pom.groupId}</groupId>
-      <artifactId>org.apache.felix.main</artifactId>
-      <version>${framework.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>${pom.groupId}</groupId>
-      <artifactId>org.apache.felix.shell</artifactId>
-      <version>${shell.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>${pom.groupId}</groupId>
-      <artifactId>org.apache.felix.shell.tui</artifactId>
-      <version>${shell.tui.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>${pom.groupId}</groupId>
-      <artifactId>org.apache.felix.bundlerepository</artifactId>
-      <version>${obr.version}</version>
-    </dependency>
-  </dependencies>
   <properties>
     <framework.version>2.1.0-SNAPSHOT</framework.version>
-    <shell.version>1.4.2</shell.version>
-    <shell.tui.version>1.4.1</shell.tui.version>
-    <obr.version>1.4.3</obr.version>
+    <gogo.runtime.version>0.5.0-SNAPSHOT</gogo.runtime.version>
+    <gogo.shell.version>0.5.0-SNAPSHOT</gogo.shell.version>
+    <gogo.command.version>0.5.0-SNAPSHOT</gogo.command.version>
+    <obr.version>1.6.2</obr.version>
   </properties>
   <build>
     <plugins>
@@ -69,41 +48,49 @@
               <goal>copy</goal>
             </goals>
             <configuration>
-                <artifactItems>
-                  <artifactItem>
-                     <groupId>${pom.groupId}</groupId>
-                     <artifactId>org.apache.felix.shell</artifactId>
-                     <version>${shell.version}</version>
-                     <type>jar</type>
-                     <overWrite>true</overWrite>
-                     <outputDirectory>${project.basedir}/bundle</outputDirectory>
-                   </artifactItem>
-                   <artifactItem>
-                     <groupId>${pom.groupId}</groupId>
-                     <artifactId>org.apache.felix.shell.tui</artifactId>
-                     <version>${shell.tui.version}</version>
-                     <type>jar</type>
-                     <overWrite>true</overWrite>
-                     <outputDirectory>${project.basedir}/bundle</outputDirectory>
-                   </artifactItem>
-                   <artifactItem>
-                     <groupId>${pom.groupId}</groupId>
-                     <artifactId>org.apache.felix.bundlerepository</artifactId>
-                     <version>${obr.version}</version>
-                     <type>jar</type>
-                     <overWrite>true</overWrite>
-                     <outputDirectory>${project.basedir}/bundle</outputDirectory>
-                   </artifactItem>
-		   <artifactItem>
-                     <groupId>${pom.groupId}</groupId>
-                     <artifactId>org.apache.felix.main</artifactId>
-                     <version>${framework.version}</version>
-                     <type>jar</type>
-                     <overWrite>true</overWrite>
-                     <outputDirectory>${project.basedir}/bin</outputDirectory>
-		     <destFileName>felix.jar</destFileName>
-                   </artifactItem>
-                 </artifactItems>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>${pom.groupId}</groupId>
+                  <artifactId>org.apache.felix.gogo.runtime</artifactId>
+                  <version>${gogo.runtime.version}</version>
+                  <type>jar</type>
+                  <overWrite>true</overWrite>
+                  <outputDirectory>${project.basedir}/bundle</outputDirectory>
+                </artifactItem>
+                <artifactItem>
+                  <groupId>${pom.groupId}</groupId>
+                  <artifactId>org.apache.felix.gogo.shell</artifactId>
+                  <version>${gogo.shell.version}</version>
+                  <type>jar</type>
+                  <overWrite>true</overWrite>
+                  <outputDirectory>${project.basedir}/bundle</outputDirectory>
+                </artifactItem>
+                <artifactItem>
+                  <groupId>${pom.groupId}</groupId>
+                  <artifactId>org.apache.felix.gogo.command</artifactId>
+                  <version>${gogo.command.version}</version>
+                  <type>jar</type>
+                  <overWrite>true</overWrite>
+                  <outputDirectory>${project.basedir}/bundle</outputDirectory>
+                </artifactItem>
+                <artifactItem>
+                  <groupId>${pom.groupId}</groupId>
+                  <artifactId>org.apache.felix.bundlerepository</artifactId>
+                  <version>${obr.version}</version>
+                  <type>jar</type>
+                  <overWrite>true</overWrite>
+                  <outputDirectory>${project.basedir}/bundle</outputDirectory>
+                </artifactItem>
+		<artifactItem>
+                  <groupId>${pom.groupId}</groupId>
+                  <artifactId>org.apache.felix.main</artifactId>
+                  <version>${framework.version}</version>
+                  <type>jar</type>
+                  <overWrite>true</overWrite>
+                  <outputDirectory>${project.basedir}/bin</outputDirectory>
+		  <destFileName>felix.jar</destFileName>
+                </artifactItem>
+              </artifactItems>
             </configuration>
           </execution>
         </executions>