-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
140 lines (134 loc) · 5.83 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>ch.bfh.ipst.dsl</groupId>
<artifactId>civil42</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>civil42</name>
<url>https://github.com/digital-sustainability/civil42</url>
<properties>
<asciidoctor-maven-plugin.version>3.0.0</asciidoctor-maven-plugin.version>
<asciidoctorj.version>2.5.12</asciidoctorj.version>
<asciidoctorj-pdf.version>2.3.15</asciidoctorj-pdf.version>
<asciidoctorj-pdf.plugin.version>2.3.15</asciidoctorj-pdf.plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj</artifactId>
<version>${asciidoctorj.version}</version>
</dependency>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj-pdf</artifactId>
<version>${asciidoctorj-pdf.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>${asciidoctor-maven-plugin.version}</version>
<dependencies>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj-pdf</artifactId>
<version>${asciidoctorj-pdf.plugin.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>output-html</id>
<phase>generate-resources</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>html</backend>
<attributes>
<toc/>
<linkcss>false</linkcss>
<source-highlighter>coderay</source-highlighter>
<imagesdir>images</imagesdir>
</attributes>
<outputDirectory>target/docs/html</outputDirectory>
</configuration>
</execution>
<execution>
<id>output-pdf</id>
<phase>install</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
</execution>
<execution>
<id>asciidoc-to-docbook</id>
<phase>install</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>docbook</backend>
<doctype>book</doctype>
<attributes>
<imagesdir>images</imagesdir>
</attributes>
<outputDirectory>target/docs/docbook</outputDirectory>
</configuration>
</execution>
</executions>
<configuration>
<sourceDirectory>src/docs/asciidoc/</sourceDirectory>
<logHandler>
<outputToConsole>true</outputToConsole>
<failIf>
<severity>ERROR</severity>
</failIf>
</logHandler>
<backend>pdf</backend>
<doctype>book</doctype>
<outputDirectory>target/docs/pdf</outputDirectory>
<!-- Attributes common to all output formats -->
<attributes>
<endpoint-url>https://github.com/digital-sustainability/civil42</endpoint-url>
<sourcedir>${project.build.sourceDirectory}</sourcedir>
<project-version>${project.version}</project-version>
<allow-uri-read>true</allow-uri-read>
</attributes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>pandoc</executable>
<!-- optional -->
<workingDirectory>target</workingDirectory>
<arguments>
<argument>-f</argument>
<argument>docbook</argument>
<argument>-s</argument>
<argument>docs/docbook/main.xml</argument>
<argument>-o</argument>
<argument>docs/main.docx</argument>
</arguments>
<environmentVariables>
<LANG>de_DE</LANG>
</environmentVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>