Author: pwang Date: 2012-02-22 17:10:36 -0800 (Wed, 22 Feb 2012) New Revision: 28350
Added: core3/support/trunk/samples/sample13/pom.xml Log: Updated Added: core3/support/trunk/samples/sample13/pom.xml =================================================================== --- core3/support/trunk/samples/sample13/pom.xml (rev 0) +++ core3/support/trunk/samples/sample13/pom.xml 2012-02-23 01:10:36 UTC (rev 28350) @@ -0,0 +1,106 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <properties> + <bundle.symbolicName>sample13</bundle.symbolicName> + <bundle.namespace>org.cytoscape.sample.internal</bundle.namespace> + <cytoscape.api.version>3.0.0-alpha8-SNAPSHOT</cytoscape.api.version> + + <maven-bundle-plugin.version>2.3.4</maven-bundle-plugin.version> + <osgi.api.version>4.2.0</osgi.api.version> + + </properties> + + <groupId>org.cytoscape.sample</groupId> + <artifactId>sample13</artifactId> + <packaging>bundle</packaging> + <name>${bundle.symbolicName}</name> + + <repositories> + <repository> + <id>cytoscape_snapshots</id> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + <name>Cytoscape Snapshots</name> + <url>http://code.cytoscape.org/nexus/content/repositories/snapshots/</url> + </repository> + <repository> + <id>cytoscape_releases</id> + <snapshots> + <enabled>false</enabled> + </snapshots> + <releases> + <enabled>true</enabled> + </releases> + <name>Cytoscape Releases</name> + <url>http://code.cytoscape.org/nexus/content/repositories/releases/</url> + </repository> + </repositories> + + <version>0.0.1</version> + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <version>${maven-bundle-plugin.version}</version> + <extensions>true</extensions> + <configuration> + <instructions> + <Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName> + <Bundle-Version>${project.version}</Bundle-Version> + <Export-Package>!${bundle.namespace}.*</Export-Package> + <Private-Package>${bundle.namespace}.*</Private-Package> + <Bundle-Activator>${bundle.namespace}.CyActivator</Bundle-Activator> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>application-api</artifactId> + <version>${cytoscape.api.version}</version> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>work-api</artifactId> + <version>${cytoscape.api.version}</version> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>service-api</artifactId> + <version>${cytoscape.api.version}</version> + </dependency> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>org.osgi.core</artifactId> + <version>${osgi.api.version}</version> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>vizmap-api</artifactId> + <version>${cytoscape.api.version}</version> + </dependency> + + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>core-task-api</artifactId> + <version>${cytoscape.api.version}</version> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>webservice-api</artifactId> + <version>${cytoscape.api.version}</version> + </dependency> + + + </dependencies> + +</project> Property changes on: core3/support/trunk/samples/sample13/pom.xml ___________________________________________________________________ Added: svn:executable + * -- 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.
