-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
141 lines (133 loc) · 6.66 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
141
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ru.curs</groupId>
<artifactId>csa-talk</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>Continuous Static Analysis talk slides</name>
<description>KStreams talk slides</description>
<organization>
<name>CURS</name>
<url>https://corchestra.ru</url>
</organization>
<developers>
<developer>
<name>Ivan Ponomarev</name>
<email>[email protected]</email>
</developer>
</developers>
<properties>
<project.slides.directory>${project.build.directory}/generated-slides</project.slides.directory>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<asciidoctorj.version>1.6.2</asciidoctorj.version>
<jruby.version>9.2.6.0</jruby.version>
<asciidoctor.maven.plugin.version>1.6.0</asciidoctor.maven.plugin.version>
<project.slides.directory>${project.build.directory}/generated-slides</project.slides.directory>
<revealjs.version>3.9.2</revealjs.version>
<highlightjs.version>9.18.0</highlightjs.version>
<asciidoctor-revealjs.version>2.0.1</asciidoctor-revealjs.version>
</properties>
<dependencies> </dependencies>
<build>
<defaultGoal>process-resources</defaultGoal>
<plugins>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>1.3.0</version>
<executions>
<execution>
<id>install-asciidoctor-revealjs</id>
<phase>generate-resources</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://github.com/asciidoctor/asciidoctor-reveal.js/archive/v${asciidoctor-revealjs.version}.zip</url>
<unpack>true</unpack>
<outputFileName>asciidoctor-reveal.js-${asciidoctor-revealjs.version}.zip</outputFileName>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
</execution>
<execution>
<id>install-revealjs</id>
<phase>generate-resources</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://github.com/hakimel/reveal.js/archive/${revealjs.version}.zip</url>
<unpack>true</unpack>
<outputFileName>reveal.js-${revealjs.version}.zip</outputFileName>
<outputDirectory>${project.slides.directory}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>${asciidoctor.maven.plugin.version}</version>
<dependencies>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj-diagram</artifactId>
<version>1.5.11</version>
</dependency>
<!-- Comment this section to use the default jruby artifact provided by the plugin -->
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby-complete</artifactId>
<version>${jruby.version}</version>
</dependency>
<!-- Comment this section to use the default AsciidoctorJ artifact provided by the plugin -->
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj</artifactId>
<version>${asciidoctorj.version}</version>
</dependency>
</dependencies>
<configuration>
<sourceDocumentName>DBDoc.adoc</sourceDocumentName>
<requires>
<require>asciidoctor-diagram</require>
</requires>
<outputFile>index.html</outputFile>
<logHandler>
<outputToConsole>true</outputToConsole>
</logHandler>
</configuration>
<executions>
<execution>
<id>generate-slides</id>
<phase>process-resources</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<outputDirectory>${project.slides.directory}</outputDirectory>
<backend>revealjs</backend>
<templateDir>${project.build.directory}/asciidoctor-reveal.js-${asciidoctor-revealjs.version}/templates</templateDir>
<sourceHighlighter>coderay</sourceHighlighter>
<attributes>
<!--
As we are downloading reveal.js in runtime, it sits in a nonstandard folder `reveal.js-${revealjs.version}`
-->
<revealjsdir>reveal.js-${revealjs.version}</revealjsdir>
<!-- put here the reveal.js specific attributes -->
<sourcedir>${basedir}/src/main/java</sourcedir>
<revealjs_theme>black</revealjs_theme>
<revealjs_transition>linear</revealjs_transition>
<project-version>${project.version}</project-version>
</attributes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>