2026-01-17 16:28:00 +01:00
|
|
|
<?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>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.kapdion.pisano</groupId>
|
|
|
|
|
<artifactId>productknowledge-parent</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>docs</artifactId>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.asciidoctor</groupId>
|
|
|
|
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
|
|
|
|
<!-- Keine Version nötig, kommt vom Parent -->
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>generate-docs</id>
|
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>process-asciidoc</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<attributes>
|
|
|
|
|
<!-- Pfad-Helper, um auf Code in anderen Modulen zuzugreifen -->
|
|
|
|
|
<project-root>${project.basedir}/..</project-root>
|
2026-01-17 16:51:54 +01:00
|
|
|
<project-name>${project.parent.name}</project-name>
|
|
|
|
|
<project-version>${project.version}</project-version>
|
|
|
|
|
<project-root>${project.basedir}/..</project-root>
|
|
|
|
|
<revnumber>${project.version}</revnumber>
|
|
|
|
|
<revdate>${maven.build.timestamp}</revdate>
|
|
|
|
|
<source-highlighter>coderay</source-highlighter>
|
2026-01-17 16:28:00 +01:00
|
|
|
</attributes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|