Skip to content

Commit 2049689

Browse files
author
phasenraum2010
committed
ongoing work on #34 #39
1 parent caa2418 commit 2049689

File tree

4 files changed

+32
-10
lines changed

4 files changed

+32
-10
lines changed

defcon-documentation/pom.xml

+16-8
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,25 @@
4242
-->
4343
</configuration>
4444
<dependencies>
45-
<!--
46-
<dependency>
47-
<groupId>org.freemarker</groupId>
48-
<artifactId>freemarker</artifactId>
49-
<version>2.3.20</version>
50-
</dependency>
51-
-->
5245
<dependency>
5346
<groupId>org.thymeleaf</groupId>
5447
<artifactId>thymeleaf</artifactId>
55-
<version>3.0.9.RELEASE</version>
48+
<version>${thymeleaf.version}</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>org.asciidoctor</groupId>
52+
<artifactId>asciidoctorj</artifactId>
53+
<version>${asciidoctorj.version}</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>com.vladsch.flexmark</groupId>
57+
<artifactId>flexmark-all</artifactId>
58+
<version>${flexmark-all.version}</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>org.apache.maven.doxia</groupId>
62+
<artifactId>doxia-module-markdown</artifactId>
63+
<version>${doxia-module-markdown.version}</version>
5664
</dependency>
5765
</dependencies>
5866
</plugin>

defcon-documentation/run.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ source ../defcon-parent/conf.sh
44

55
#mvn_jbake_help
66

7-
run_jbake_seed
7+
#run_jbake_seed
88

9-
#mvn_jbake_run
9+
mvn_jbake_run
1010

1111
exit 0

defcon-parent/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@
7575

7676
<aspectj.version>1.8.9</aspectj.version>
7777

78+
<!-- jbake -->
79+
<asciidoctorj.version>1.5.6</asciidoctorj.version>
80+
<doxia-module-markdown.version>1.8</doxia-module-markdown.version>
81+
<flexmark-all.version>0.34.8</flexmark-all.version>
82+
<thymeleaf.version>3.0.9.RELEASE</thymeleaf.version>
83+
7884
<!-- file encoding -->
7985
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8086
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

run.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
3+
source defcon-parent/conf.sh
4+
5+
#mvn_fast_build
6+
mvn_build
7+
8+
exit 0

0 commit comments

Comments
 (0)