Author: kono Date: 2009-03-17 19:22:21 -0700 (Tue, 17 Mar 2009) New Revision: 16301
Added: csplugins/ucsd/kono/osgi-ws-client/pom.xml Log: Added: csplugins/ucsd/kono/osgi-ws-client/pom.xml =================================================================== --- csplugins/ucsd/kono/osgi-ws-client/pom.xml 2009-03-18 02:20:01 UTC (rev 16300) +++ csplugins/ucsd/kono/osgi-ws-client/pom.xml 2009-03-18 02:22:21 UTC (rev 16301) @@ -0,0 +1,124 @@ +<?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>minimal</artifactId> + <version>1.0-SNAPSHOT</version> + + <name>org.cytoscape.minimal (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>minimalws</module> + </modules> + + <repositories> + + <repository> + <id>pax</id> + <name>pax1</name> + <url>http://repository.ops4j.org/maven2/</url> + </repository> + <!-- SpringSource OSGi Bundle Repository --> + <repository> + <id>com.springsource.repository.bundles.release</id> + <name>SpringSource OSGi Bundle Repository</name> + <url>http://repository.springsource.com/maven/bundles/release</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + <repository> + <id>com.springsource.repository.bundles.external</id> + <name>SpringSource OSGi Bundle Repository</name> + <url>http://repository.springsource.com/maven/bundles/external</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + <repository> + <id>apache.snapshots</id> + <name>Apache Maven Snapshot Repository</name> + <url>http://people.apache.org/repo/m2-snapshot-repository/</url> + <releases> + <enabled>false</enabled> + </releases> + <snapshots> + <enabled>true</enabled> + </snapshots> + </repository> + </repositories> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + <showWarnings>true</showWarnings> + <showDeprecation>true</showDeprecation> + <compilerArguments> + <!-- <Xlint:all></Xlint:all> + <Xlint:-path></Xlint:-path> --> + <Xmaxwarns>10000</Xmaxwarns> + <Xmaxerrs>10000</Xmaxerrs> + </compilerArguments> + </configuration> + </plugin> + <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> + <param>--profiles=minimal</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 -~----------~----~----~----~------~----~------~--~---
