Author: kono Date: 2012-10-02 16:28:23 -0700 (Tue, 02 Oct 2012) New Revision: 30596
Modified: core3/impl/trunk/help-impl/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/impl/trunk/help-impl/pom.xml =================================================================== --- core3/impl/trunk/help-impl/pom.xml 2012-10-02 21:59:58 UTC (rev 30595) +++ core3/impl/trunk/help-impl/pom.xml 2012-10-02 23:28:23 UTC (rev 30596) @@ -1,150 +1,187 @@ -<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/maven-v4_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/maven-v4_0_0.xsd"> - <parent> - <artifactId>impl-parent</artifactId> - <groupId>org.cytoscape</groupId> - <version>3.0.0-beta2-SNAPSHOT</version> - </parent> + <parent> + <artifactId>impl-parent</artifactId> + <groupId>org.cytoscape</groupId> + <version>3.0.0-beta2-SNAPSHOT</version> + </parent> - <properties> - <bundle.symbolicName>org.cytoscape.help-impl</bundle.symbolicName> - <bundle.namespace>org.cytoscape.help.internal</bundle.namespace> - </properties> + <properties> + <bundle.symbolicName>org.cytoscape.help-impl</bundle.symbolicName> + <bundle.namespace>org.cytoscape.help.internal</bundle.namespace> + </properties> - <modelVersion>4.0.0</modelVersion> - <artifactId>help-impl</artifactId> + <modelVersion>4.0.0</modelVersion> + <artifactId>help-impl</artifactId> - <name>Cytoscape Help Impl (${project.artifactId})</name> + <name>Cytoscape Help Impl (${project.artifactId})</name> - <packaging>jar</packaging> + <packaging>jar</packaging> - <!-- bootstrap for cytoscape dependencies, namely the parent POM snapshots --> - <repositories> - <repository> - <id>cytoscape_snapshots</id> - <snapshots> - <enabled>true</enabled> - </snapshots> - <releases> - <enabled>false</enabled> - </releases> - <name>Cytoscape Snapshots</name> - <url>http://cytoscape.wodaklab.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://cytoscape.wodaklab.org/nexus/content/repositories/releases/</url> - </repository> - </repositories> + <!-- bootstrap for cytoscape dependencies, namely the parent POM snapshots --> + <repositories> + <repository> + <id>cytoscape_snapshots</id> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + <name>Cytoscape Snapshots</name> + <url>http://cytoscape.wodaklab.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://cytoscape.wodaklab.org/nexus/content/repositories/releases/</url> + </repository> + </repositories> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-assembly-plugin</artifactId> - <version>2.2.1</version> - <configuration> - <descriptors> - <descriptor>src/main/assembly/html.xml</descriptor> - <descriptor>src/main/assembly/pdf.xml</descriptor> - <descriptor>src/main/assembly/javahelp.xml</descriptor> - </descriptors> - </configuration> - <executions> - <execution> - <id>make-assembly</id> - <phase>package</phase> - <goals> - <goal>single</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-resources-plugin</artifactId> - <version>2.3</version> - <executions> - <execution> - <id>copy-html-images</id> - <phase>process-resources</phase> - <goals> - <goal>copy-resources</goal> - </goals> - <configuration> - <outputDirectory>target/docbkx/html/images</outputDirectory> - <resources> - <resource> - <directory>src/docbkx/images</directory> - </resource> - </resources> - </configuration> - </execution> - <execution> - <id>copy-javahelp-images</id> - <phase>process-resources</phase> - <goals> - <goal>copy-resources</goal> - </goals> - <configuration> - <outputDirectory>target/docbkx/javahelp/images</outputDirectory> - <resources> - <resource> - <directory>src/docbkx/images</directory> - </resource> - </resources> - </configuration> - </execution> - <execution> - <id>copy-pdf</id> - <phase>process-resources</phase> - <goals> - <goal>copy-resources</goal> - </goals> - <configuration> - <outputDirectory>target/docbkx/pdf</outputDirectory> - <resources> - <resource> - <directory>src/main/pdf</directory> - </resource> - </resources> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <groupId>com.agilejava.docbkx</groupId> - <artifactId>docbkx-maven-plugin</artifactId> - <version>2.0.9</version> - <executions> - <execution> - <goals> - <!-- - <goal>generate-pdf</goal> - --> - <goal>generate-javahelp</goal> - <goal>generate-html</goal> - </goals> - <phase>generate-sources</phase> - </execution> - </executions> - <dependencies> - <dependency> - <groupId>org.docbook</groupId> - <artifactId>docbook-xml</artifactId> - <version>4.4</version> - <scope>runtime</scope> - </dependency> - </dependencies> - </plugin> - </plugins> - </build> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <version>2.2.1</version> + <configuration> + <descriptors> + <descriptor>src/main/assembly/html.xml</descriptor> + <descriptor>src/main/assembly/pdf.xml</descriptor> + <descriptor>src/main/assembly/javahelp.xml</descriptor> + </descriptors> + </configuration> + <executions> + <execution> + <id>make-assembly</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-resources-plugin</artifactId> + <version>2.6</version> + <executions> + <execution> + <id>copy-html-images</id> + <phase>process-resources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>target/docbkx/html/images</outputDirectory> + <resources> + <resource> + <directory>src/docbkx/images</directory> + </resource> + </resources> + </configuration> + </execution> + <execution> + <id>copy-javahelp-images</id> + <phase>process-resources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>target/docbkx/javahelp/images</outputDirectory> + <resources> + <resource> + <directory>src/docbkx/images</directory> + </resource> + </resources> + </configuration> + </execution> + <execution> + <id>copy-pdf</id> + <phase>process-resources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>target/docbkx/pdf</outputDirectory> + <resources> + <resource> + <directory>src/main/pdf</directory> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>com.agilejava.docbkx</groupId> + <artifactId>docbkx-maven-plugin</artifactId> + <version>2.0.9</version> + <executions> + <execution> + <goals> + <!-- <goal>generate-pdf</goal> --> + <goal>generate-javahelp</goal> + <goal>generate-html</goal> + </goals> + <phase>generate-sources</phase> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>org.docbook</groupId> + <artifactId>docbook-xml</artifactId> + <version>4.4</version> + <scope>runtime</scope> + </dependency> + </dependencies> + </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> + com.agilejava.docbkx + </groupId> + <artifactId> + docbkx-maven-plugin + </artifactId> + <versionRange> + [2.0.9,) + </versionRange> + <goals> + <goal> + generate-javahelp + </goal> + <goal>generate-html</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> </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.
