Author: kono Date: 2009-06-10 19:29:53 -0700 (Wed, 10 Jun 2009) New Revision: 16915
Added: csplugins/trunk/soc/kozo/layer-plugin/pom.xml Log: Initial checkin of the layer builder plugin project. Added: csplugins/trunk/soc/kozo/layer-plugin/pom.xml =================================================================== --- csplugins/trunk/soc/kozo/layer-plugin/pom.xml (rev 0) +++ csplugins/trunk/soc/kozo/layer-plugin/pom.xml 2009-06-11 02:29:53 UTC (rev 16915) @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + + <!-- + | put company details here + <organization> + <name>...</name> + <url>http://...</url> + </organization> + --> + + <!-- + | put license details here + <licenses> + <license> + <name>...</name> + <url>http://...</url> + <comments> + </comments> + </license> + </licenses> + --> + + <modelVersion>4.0.0</modelVersion> + <groupId>org.cytoscape</groupId> + <artifactId>layer-plugin</artifactId> + <version>1.0-SNAPSHOT</version> + + <name>org.cytoscape.layer-plugin (OSGi project)</name> + + <!-- + | describe your project here + --> + + <description>Generated using Pax-Construct</description> + + <properties> + <!-- + | some example OSGi runtime properties + --> + <org.osgi.service.http.port>8080</org.osgi.service.http.port> + <org.osgi.service.http.port.secure>8443</org.osgi.service.http.port.secure> + </properties> + + <packaging>pom</packaging> + + <modules> + <module>poms</module> + <module>provision</module> + <module>layer-builder-plugin</module> + </modules> + + <build> + <plugins> + <plugin> + <groupId>org.ops4j</groupId> + <artifactId>maven-pax-plugin</artifactId> + <version>1.4</version> + <configuration> + <!-- + | some example Pax-Runner settings + --> + <provision> + <param>--platform=felix</param> + </provision> + </configuration> + <executions> + <!-- + | uncomment to auto-generate IDE files + <execution> + <id>ide-support</id> + <goals> + <goal>eclipse</goal> + </goals> + </execution> + --> + </executions> + </plugin> + </plugins> + </build> + +</project> \ No newline at end of file --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
