Author: oriol
Date: 2012-10-12 07:00:06 -0700 (Fri, 12 Oct 2012)
New Revision: 30661
Added:
core3/samples/trunk/sample28/feature/src/
core3/samples/trunk/sample28/feature/src/main/
core3/samples/trunk/sample28/feature/src/main/features/
core3/samples/trunk/sample28/feature/src/main/features/features.xml
Modified:
core3/samples/trunk/sample28/feature/pom.xml
Log:
Changes to avoid loading all jars dependencies in the kar file, which could
produce conflicts when the app is loaded. Now, the features.xml file is not
generated automatically and needs to be updated by the developer
Modified: core3/samples/trunk/sample28/feature/pom.xml
===================================================================
--- core3/samples/trunk/sample28/feature/pom.xml 2012-10-12 04:31:16 UTC
(rev 30660)
+++ core3/samples/trunk/sample28/feature/pom.xml 2012-10-12 14:00:06 UTC
(rev 30661)
@@ -35,7 +35,7 @@
<goal>features-create-kar</goal>
</goals>
<configuration>
-
<featuresFile>target/features.xml</featuresFile>
+
<featuresFile>src/main/features/features.xml</featuresFile>
</configuration>
</execution>
</executions>
Added: core3/samples/trunk/sample28/feature/src/main/features/features.xml
===================================================================
--- core3/samples/trunk/sample28/feature/src/main/features/features.xml
(rev 0)
+++ core3/samples/trunk/sample28/feature/src/main/features/features.xml
2012-10-12 14:00:06 UTC (rev 30661)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<features xmlns="http://karaf.apache.org/xmlns/features/v1.0.0"
name="sample28-feature">
+ <feature description="Cytoscape Sample 28 Feature (sample28-feature)"
version="3.0.0-alpha9-SNAPSHOT" name="sample28-feature">
+ <bundle>mvn:org.cytoscape/sample28-app/3.0.0-alpha9-SNAPSHOT</bundle>
+
<bundle>mvn:org.jfree.chart/com.springsource.org.jfree.chart/1.0.9</bundle>
+ <bundle>mvn:org.jfree/com.springsource.org.jfree/1.0.12</bundle>
+ <bundle>mvn:javax.servlet/com.springsource.javax.servlet/2.5.0</bundle>
+ </feature>
+</features>
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.