You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by ma...@apache.org on 2010/03/18 23:29:23 UTC

svn commit: r925026 - in /incubator/ace/trunk/ace-webui: osgi.bnd pom.xml

Author: marrs
Date: Thu Mar 18 22:29:23 2010
New Revision: 925026

URL: http://svn.apache.org/viewvc?rev=925026&view=rev
Log:
Trying to add OSGi metadata to that WAR, but it's not really working yet.

Modified:
    incubator/ace/trunk/ace-webui/osgi.bnd
    incubator/ace/trunk/ace-webui/pom.xml

Modified: incubator/ace/trunk/ace-webui/osgi.bnd
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/ace-webui/osgi.bnd?rev=925026&r1=925025&r2=925026&view=diff
==============================================================================
--- incubator/ace/trunk/ace-webui/osgi.bnd (original)
+++ incubator/ace/trunk/ace-webui/osgi.bnd Thu Mar 18 22:29:23 2010
@@ -4,9 +4,5 @@ Bundle-Version>:\
 Bundle-SymbolicName:\
   ${bundle.symbolicName}
 
-Import-Package: org.apache.ace.log,org.apache.ace.client.repository,org.apache.ace.client.repository.object,org.apache.ace.client.repository.repository,org.apache.ace.client.repository.stateful,org.apache.ace.client.repository.helper,org.apache.ace.client.repository.helper.bundle,org.xml.sax, javax.xml.parsers, junit.framework;resolution:=optional, com.google.gwt.benchmarks;resolution:=optional, com.allen_sauer.gwt.dnd.client;resolution:=optional, com.allen_sauer.gwt.dnd.client.drop;resolution:=optional, *
-Dynamic-ImportPackage: *
 Bundle-Name: Apache ACE - Client Web UI
 Bundle-Activator: org.apache.ace.server.Activator
-Bundle-ClassPath: WEB-INF/classes, WEB-INF/lib/gwt-servlet.jar
-Webapp-Context: webui

Modified: incubator/ace/trunk/ace-webui/pom.xml
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/ace-webui/pom.xml?rev=925026&r1=925025&r2=925026&view=diff
==============================================================================
--- incubator/ace/trunk/ace-webui/pom.xml (original)
+++ incubator/ace/trunk/ace-webui/pom.xml Thu Mar 18 22:29:23 2010
@@ -42,10 +42,29 @@
 
     <build>
         <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-            </plugin>
+
+			<plugin>
+			        <groupId>org.apache.felix</groupId>
+			        <artifactId>maven-bundle-plugin</artifactId>
+			        <executions>
+			          <execution>
+			            <id>bundle-manifest</id>
+			            <phase>process-classes</phase>
+			            <goals>
+			              <goal>manifest</goal>
+			            </goals>
+			          </execution>
+			        </executions>
+			        <configuration>
+			          <supportedProjectTypes>
+			            <supportedProjectType>jar</supportedProjectType>
+			            <supportedProjectType>bundle</supportedProjectType>
+			            <supportedProjectType>war</supportedProjectType>
+			          </supportedProjectTypes>
+			        </configuration>
+			      </plugin>
+
+
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>gwt-maven-plugin</artifactId>