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 2009/07/23 19:04:08 UTC

svn commit: r797146 - /felix/trunk/main/pom.xml

Author: rickhall
Date: Thu Jul 23 17:04:08 2009
New Revision: 797146

URL: http://svn.apache.org/viewvc?rev=797146&view=rev
Log:
It looks like we need to continue to extract the framework JAR
file while building main, otherwise it can't find the OSGi
classes. (FELIX-1404)

Modified:
    felix/trunk/main/pom.xml

Modified: felix/trunk/main/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/main/pom.xml?rev=797146&r1=797145&r2=797146&view=diff
==============================================================================
--- felix/trunk/main/pom.xml (original)
+++ felix/trunk/main/pom.xml Thu Jul 23 17:04:08 2009
@@ -146,6 +146,23 @@
         <artifactId>maven-dependency-plugin</artifactId>
         <executions>
           <execution>
+            <id>unpack</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>unpack</goal>
+            </goals>
+            <configuration>
+               <outputDirectory>${project.build.outputDirectory}</outputDirectory>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>${pom.groupId}</groupId>
+                  <artifactId>org.apache.felix.framework</artifactId>
+                  <version>1.9.0-SNAPSHOT</version>
+                </artifactItem>
+              </artifactItems>
+            </configuration>
+          </execution>
+          <execution>
             <id>copy</id>
             <phase>install</phase>
             <goals>