| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| |
| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.apache.opennlp</groupId> |
| <artifactId>opennlp</artifactId> |
| <version>3.0.0-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>opennlp-docs</artifactId> |
| <packaging>pom</packaging> |
| <name>Apache OpenNLP :: Documentation</name> |
| |
| <profiles> |
| <profile> |
| <id>doc-manual-html</id> |
| <activation> |
| <activeByDefault>true</activeByDefault> |
| </activation> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>com.agilejava.docbkx</groupId> |
| <artifactId>docbkx-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>doc-manual-html</id> |
| <goals> |
| <goal>generate-html</goal> |
| </goals> |
| <phase>package</phase> |
| </execution> |
| </executions> |
| <configuration> |
| <htmlStylesheet>css/opennlp-dev-manual.css</htmlStylesheet> |
| <highlightSource>1</highlightSource> |
| <htmlCustomization>${project.basedir}/src/main/resources/xsl/html.xsl</htmlCustomization> |
| <postProcess> |
| <copy todir="${project.build.directory}/docbkx/html"> |
| <fileset dir="${project.basedir}/src/docbkx"> |
| <include name="**/*.css" /> |
| <include name="**/*.png" /> |
| <include name="**/*.gif" /> |
| <include name="**/*.jpg" /> |
| </fileset> |
| </copy> |
| </postProcess> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| <profile> |
| <id>doc-manual-pdf</id> |
| <activation> |
| <activeByDefault>true</activeByDefault> |
| </activation> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>com.agilejava.docbkx</groupId> |
| <artifactId>docbkx-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>doc-manual-pdf</id> |
| <goals> |
| <goal>generate-pdf</goal> |
| </goals> |
| <phase>package</phase> |
| </execution> |
| </executions> |
| <configuration> |
| <foCustomization>${project.basedir}/src/main/resources/xsl/pdf.xsl</foCustomization> |
| <highlightSource>1</highlightSource> |
| <hyphenate>true</hyphenate> |
| <hyphenateVerbatim>false</hyphenateVerbatim> |
| <showXslMessages>false</showXslMessages> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| <profile> |
| <id>doc-manual-epub</id> |
| <activation> |
| <activeByDefault>false</activeByDefault> |
| </activation> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>com.agilejava.docbkx</groupId> |
| <artifactId>docbkx-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>doc-manual-epub</id> |
| <goals> |
| <goal>generate-epub3</goal> |
| </goals> |
| <phase>package</phase> |
| </execution> |
| </executions> |
| <configuration> |
| <hyphenate>true</hyphenate> |
| <hyphenateVerbatim>false</hyphenateVerbatim> |
| <htmlStylesheet>css/opennlp-dev-manual.css</htmlStylesheet> |
| <epub3Customization>${project.basedir}/src/main/resources/xsl/epub3.xsl</epub3Customization> |
| <chunkQuietly>true</chunkQuietly> |
| <showXslMessages>false</showXslMessages> |
| <preProcess> |
| <copy todir="${project.build.directory}/docbkx/epub3/images"> |
| <fileset dir="src/docbkx/images/"> |
| <include name="*.png"/> |
| </fileset> |
| </copy> |
| <copy todir="${project.build.directory}/docbkx/epub3/css" |
| file="src/docbkx/css/opennlp-dev-manual.css"/> |
| </preProcess> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>com.agilejava.docbkx</groupId> |
| <artifactId>docbkx-maven-plugin</artifactId> |
| <version>2.0.17</version> |
| <dependencies> |
| <dependency> |
| <groupId>net.sf.docbook</groupId> |
| <artifactId>docbook-xml</artifactId> |
| <version>5.0-all</version> |
| <classifier>resources</classifier> |
| <type>zip</type> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>net.sf.xslthl</groupId> |
| <artifactId>xslthl</artifactId> |
| <version>2.1.3</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>net.sf.offo</groupId> |
| <artifactId>fop-hyph</artifactId> |
| <version>2.0</version> |
| <scope>runtime</scope> |
| </dependency> |
| </dependencies> |
| <configuration> |
| <xincludeSupported>true</xincludeSupported> |
| <includes>opennlp.xml</includes> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| </project> |