Author: kono Date: 2012-10-03 09:48:35 -0700 (Wed, 03 Oct 2012) New Revision: 30597
Modified: core3/samples/trunk/sample28/feature/pom.xml Log: Updated pom file to avoid warnings in Eclipse environment. This change does not affect actual build process. Just suppress warnings. Modified: core3/samples/trunk/sample28/feature/pom.xml =================================================================== --- core3/samples/trunk/sample28/feature/pom.xml 2012-10-02 23:28:23 UTC (rev 30596) +++ core3/samples/trunk/sample28/feature/pom.xml 2012-10-03 16:48:35 UTC (rev 30597) @@ -1,46 +1,85 @@ -<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"> +<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> - <parent> + <parent> <artifactId>sample28-parent</artifactId> - <groupId>org.cytoscape</groupId> - <version>3.0.0-alpha9-SNAPSHOT</version> - </parent> + <groupId>org.cytoscape</groupId> + <version>3.0.0-alpha9-SNAPSHOT</version> + </parent> - <groupId>org.cytoscape</groupId> <artifactId>sample28-feature</artifactId> <packaging>jar</packaging> <name>Cytoscape Sample 28 Feature (${artifactId})</name> <build> - <plugins> - <plugin> - <groupId>org.apache.karaf.tooling</groupId> - <artifactId>karaf-maven-plugin</artifactId> - <version>3.0.0-SNAPSHOT</version> - <executions> - <execution> - <id>generate</id> - <goals> - <goal>features-generate-descriptor</goal> - </goals> - <configuration> - <outputFile>target/features.xml</outputFile> - </configuration> - </execution> - <execution> - <id>create-kar</id> - <phase>package</phase> - <goals> - <goal>features-create-kar</goal> - </goals> - <configuration> - <featuresFile>target/features.xml</featuresFile> - </configuration> - </execution> - </executions> - </plugin> + <plugins> + <plugin> + <groupId>org.apache.karaf.tooling</groupId> + <artifactId>karaf-maven-plugin</artifactId> + <version>3.0.0-SNAPSHOT</version> + <executions> + <execution> + <id>generate</id> + <goals> + <goal>features-generate-descriptor</goal> + </goals> + <configuration> + <outputFile>target/features.xml</outputFile> + </configuration> + </execution> + <execution> + <id>create-kar</id> + <phase>package</phase> + <goals> + <goal>features-create-kar</goal> + </goals> + <configuration> + <featuresFile>target/features.xml</featuresFile> + </configuration> + </execution> + </executions> + </plugin> </plugins> + + <pluginManagement> + <plugins> + <!--This plugin's configuration is used to store Eclipse m2e settings + only. It has no influence on the Maven build itself. --> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId> + org.apache.karaf.tooling + </groupId> + <artifactId> + karaf-maven-plugin + </artifactId> + <versionRange> + [3.0.0-SNAPSHOT,) + </versionRange> + <goals> + <goal> + features-generate-descriptor + </goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> <dependencies> @@ -50,5 +89,5 @@ <version>${project.version}</version> </dependency> </dependencies> - + </project> -- 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.
