| <?xml version="1.0" encoding="utf-8" ?> |
| <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"> |
| |
| <!-- |
| |
| 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. |
| --> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.karaf.eik</groupId> |
| <artifactId>parent</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| <relativePath>../parent/pom.xml</relativePath> |
| </parent> |
| |
| <groupId>org.apache.karaf.eik</groupId> |
| <artifactId>manual</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| <name>Apache Karaf :: EIK :: Manual</name> |
| <packaging>war</packaging> |
| |
| <properties> |
| <manual.dir>${project.build.directory}/manual</manual.dir> |
| <manual>${manual.dir}/eik-manual-${project.version}</manual> |
| <scalate.version>1.5.1</scalate.version> |
| <eik.version>${project.version}</eik.version> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.fusesource.scalate</groupId> |
| <artifactId>scalate-wikitext</artifactId> |
| <version>${scalate.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>1.7.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scala-library</artifactId> |
| <version>${scala.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scala-compiler</artifactId> |
| <version>${scala.version}</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>filter</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>copy-resources</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${project.build.directory}/webapp</outputDirectory> |
| <resources> |
| <resource> |
| <directory>src/main/webapp</directory> |
| <filtering>true</filtering> |
| </resource> |
| </resources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.fusesource.scalate</groupId> |
| <artifactId>maven-scalate-plugin</artifactId> |
| <version>${scalate.version}</version> |
| <executions> |
| <execution> |
| <id>generate-htmls</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>sitegen-no-fork</goal> |
| </goals> |
| <configuration> |
| <webappDirectory>${project.build.directory}/webapp</webappDirectory> |
| </configuration> |
| </execution> |
| </executions> |
| <configuration> |
| <remoteServerId>people.apache.org</remoteServerId> |
| <remoteServerUrl>scp://people.apache.org/www/karaf.apache.org/manual/eik/${eik.version} |
| </remoteServerUrl> |
| </configuration> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.maven.wagon</groupId> |
| <artifactId>wagon-ssh</artifactId> |
| <version>1.0-beta-6</version> |
| </dependency> |
| <dependency> |
| <groupId>org.fusesource.wikitext</groupId> |
| <artifactId>confluence-core</artifactId> |
| <version>1.3</version> |
| </dependency> |
| </dependencies> |
| </plugin> |
| <plugin> |
| <artifactId>maven-war-plugin</artifactId> |
| <version>2.1</version> |
| <configuration> |
| <webResources> |
| <resource> |
| <directory>${project.build.directory}/webapp/</directory> |
| </resource> |
| </webResources> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.mortbay.jetty</groupId> |
| <artifactId>jetty-maven-plugin</artifactId> |
| <version>8.1.7.v20120910</version> |
| <configuration> |
| <!-- When editing the conf files, you can comment this line to run |
| mvn jetty:run |
| to have a live web site |
| --> |
| <webAppSourceDirectory>${basedir}/src/main/webapp</webAppSourceDirectory> |
| |
| <systemProperties> |
| <systemProperty> |
| <name>scalate.editor</name> |
| <value>${env.SCALATE_EDITOR}</value> |
| </systemProperty> |
| <systemProperty> |
| <name>scalate.workdir</name> |
| <value>${project.build.directory}/scalateWorkDir</value> |
| </systemProperty> |
| <systemProperty> |
| <name>scalate.mode</name> |
| <value>development</value> |
| </systemProperty> |
| </systemProperties> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <reporting> |
| <plugins> |
| <plugin> |
| <groupId>org.fusesource.scalate</groupId> |
| <artifactId>maven-scalate-plugin</artifactId> |
| <version>${scalate.version}</version> |
| </plugin> |
| </plugins> |
| </reporting> |
| |
| <profiles> |
| <profile> |
| <id>manual</id> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <version>1.6</version> |
| <executions> |
| <execution> |
| <id>create-manual</id> |
| <phase>package</phase> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| <configuration> |
| <tasks> |
| <mkdir dir="${manual.dir}" /> |
| <move file="${project.build.directory}/sitegen/manual.html" tofile="${manual}.html" /> |
| <echo message="Generating PDF using Prince XML (http://www.princexml.com/)" /> |
| <exec executable="prince"> |
| <arg value="${manual}.html" /> |
| <arg value="${manual}.pdf" /> |
| <arg value="--log" /> |
| <arg value="${project.build.directory}/prince.log" /> |
| </exec> |
| <attachartifact file="${manual}.html" type="html" /> |
| <attachartifact file="${manual}.pdf" type="pdf" /> |
| </tasks> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| </project> |