| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ******************************************************************************* |
| * Copyright (c) 2019 Contributors to the Eclipse Foundation |
| * |
| * See the NOTICE file(s) distributed with this work for additional |
| * information regarding copyright ownership. |
| * |
| * This program and the accompanying materials are made available under the |
| * terms of the Eclipse Public License v. 2.0 which is available at |
| * http://www.eclipse.org/legal/epl-2.0. |
| * |
| * SPDX-License-Identifier: EPL-2.0 |
| ******************************************************************************* |
| --> |
| <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <groupId>org.eclipse.openk</groupId> |
| <artifactId>contact-base-data.documentation</artifactId> |
| <version>0.0.1-SNAPSHOT</version> |
| <name>contact-base-data-documentation</name> |
| <description>Contact Base Data project for openKONSEQUENZ</description> |
| |
| <properties> |
| <skip.asciidoc>false</skip.asciidoc> |
| <java.version>1.8</java.version> |
| <asciidoctor-maven-plugin-version>1.5.3</asciidoctor-maven-plugin-version> |
| <asciidoctorj-pdf-version>1.5.0-alpha.11</asciidoctorj-pdf-version> |
| <asciidoctorj-version>1.5.4</asciidoctorj-version> |
| <asciidoctorj-diagram-versions>1.5.4.1</asciidoctorj-diagram-versions> |
| <jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version> |
| <jruby-complete-version>9.0.0.0</jruby-complete-version> |
| <maven.compiler.target>1.8</maven.compiler.target> |
| <maven.compiler.source>1.8</maven.compiler.source> |
| </properties> |
| |
| <dependencies> |
| |
| </dependencies> |
| |
| <dependencyManagement> |
| |
| </dependencyManagement> |
| |
| <build> |
| <finalName>${project.artifactId}</finalName> |
| <plugins> |
| <plugin> |
| <groupId>org.asciidoctor</groupId> |
| <artifactId>asciidoctor-maven-plugin</artifactId> |
| <version>${asciidoctor-maven-plugin-version}</version> |
| <dependencies> |
| <dependency> |
| <groupId>org.jruby</groupId> |
| <artifactId>jruby-complete</artifactId> |
| <version>${jruby-complete-version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.asciidoctor</groupId> |
| <artifactId>asciidoctorj-pdf</artifactId> |
| <version>${asciidoctorj-pdf-version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.asciidoctor</groupId> |
| <artifactId>asciidoctorj</artifactId> |
| <version>${asciidoctorj-version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.asciidoctor</groupId> |
| <artifactId>asciidoctorj-diagram</artifactId> |
| <version>${asciidoctorj-diagram-versions}</version> |
| </dependency> |
| </dependencies> |
| <configuration> |
| <sourceDirectory>src/main/asciidoc</sourceDirectory> |
| <requires> |
| <require>asciidoctor-diagram</require> |
| </requires> |
| <attributes> |
| <imagesoutdir>${project.build.directory}/generated-docs/images</imagesoutdir> |
| <imagesDir>${project.build.directory}/generated-docs/images</imagesDir> |
| </attributes> |
| </configuration> |
| <executions> |
| <execution> |
| <id>output-html</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>process-asciidoc</goal> |
| </goals> |
| <configuration> |
| <skip>${skip.asciidoc}</skip> |
| <imagesDir>./images</imagesDir> |
| <requires> |
| <require>asciidoctor-diagram</require> |
| </requires> |
| <sourceHighlighter>coderay</sourceHighlighter> |
| <backend>html</backend> |
| <doctype>book</doctype> |
| </configuration> |
| </execution> |
| <execution> |
| <id>output-pdf</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>process-asciidoc</goal> |
| </goals> |
| <configuration> |
| <skip>${skip.asciidoc}</skip> |
| <imagesDir>${project.build.directory}/generated-docs/images</imagesDir> |
| <requires> |
| <require>asciidoctor-diagram</require> |
| </requires> |
| <sourceHighlighter>coderay</sourceHighlighter> |
| <backend>pdf</backend> |
| <doctype>book</doctype> |
| <attributes> |
| <icons>font</icons> |
| <pagenums /> |
| <toc /> |
| <idprefix /> |
| <idseparator>-</idseparator> |
| </attributes> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| </plugins> |
| </build> |
| |
| |
| </project> |