-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
101 lines (96 loc) · 3.41 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>com.github.daggerok</groupId>
<version>0.0.1</version>
<artifactId>vue-examples</artifactId>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>1.5.6</version>
<dependencies>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj-pdf</artifactId>
<version>1.5.0-alpha.16</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>output-pdf-doc</id>
<phase>generate-resources</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>pdf</backend>
<sourceHighlighter>coderay</sourceHighlighter>
</configuration>
</execution>
<execution>
<id>output-html</id>
<phase>generate-resources</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>html</backend>
</configuration>
</execution>
<execution>
<id>output-docbook</id>
<phase>generate-resources</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>docbook</backend>
</configuration>
</execution>
</executions>
<configuration>
<outputDirectory>target/generated-docs</outputDirectory>
<sourceDirectory>docs</sourceDirectory>
<relativeBaseDir>true</relativeBaseDir>
<headerFooter>true</headerFooter>
<imagesDir>images</imagesDir>
<sourceHighlighter>highlightjs</sourceHighlighter>
<attributes>
<toc>left</toc>
<linkcss>false</linkcss>
<doctype>book</doctype>
<ruby>erubis</ruby>
<encoding>${project.build.sourceEncoding}</encoding>
<linkattrs>true</linkattrs>
<numbered>true</numbered>
<sectanchors>true</sectanchors>
<sectlink>true</sectlink>
<idprefix/>
<docinfo1/>
<icons>font</icons>
<idseparator>-</idseparator>
<setanchors>true</setanchors>
<toc-title>Table of Contents</toc-title>
<project-name>${project.artifactId}</project-name>
<root-project-name>${project.artifactId}</root-project-name>
<project-version>${project.version}</project-version>
<github-url>https://github.com/daggerok/${project.artifactId}</github-url>
</attributes>
</configuration>
</plugin>
</plugins>
<defaultGoal>clean process-resources</defaultGoal>
</build>
</project>