Description: Generate HTML from markdown during build.
Author: Andreas B. Mundt <andi@debian.org>
Forwarded: not-needed
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/pom.xml
+++ b/pom.xml
@@ -438,6 +438,45 @@
 							</execution>
 						</executions>
 					</plugin>
+					<plugin>
+						<groupId>org.codehaus.mojo</groupId>
+						<artifactId>exec-maven-plugin</artifactId>
+						<version>3.1.0</version>
+						<executions>
+							<execution>
+								<id>en</id>
+								<phase>prepare-package</phase>
+								<goals>
+									<goal>exec</goal>
+								</goals>
+								<configuration>
+									<executable>pandoc</executable>
+									<workingDirectory>src/info/</workingDirectory>
+									<arguments>
+										<argument>-o</argument>
+										<argument>Introduction_Filius.html</argument>
+										<argument>Introduction_Filius.md</argument>
+									</arguments>
+								</configuration>
+							</execution>
+							<execution>
+								<id>de</id>
+								<phase>prepare-package</phase>
+								<goals>
+									<goal>exec</goal>
+								</goals>
+								<configuration>
+									<executable>pandoc</executable>
+									<workingDirectory>src/info/</workingDirectory>
+									<arguments>
+										<argument>-o</argument>
+										<argument>Einfuehrung_Filius.html</argument>
+										<argument>Einfuehrung_Filius.md</argument>
+									</arguments>
+								</configuration>
+							</execution>
+						</executions>
+					</plugin>
 					<!-- Create Debian Package (used for Ubuntu Platform) -->
 					<plugin>
 						<artifactId>jdeb</artifactId>
