1+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+ <groupId >openfasttrace-architecture-template</groupId >
6+ <artifactId >openfasttrace-architecture-template</artifactId >
7+ <version >0.1.0</version >
8+ <scm >
9+ <url >https://github.com/itsallcode/openfasttrace-architecture-template.git</url >
10+ <developerConnection >itsallcode.org</developerConnection >
11+ </scm >
12+ <issueManagement >
13+ <url >https://github.com/itsallcode/openfasttrace-architecture-template/issues</url >
14+ </issueManagement >
15+ <url >https://github.com/itsallcode/openfasttrace</url >
16+ <name >OpenFastTrace</name >
17+ <description >Free software requirement tracing suite</description >
18+ <build >
19+ <plugins >
20+ <plugin >
21+ <groupId >com.github.jeluard</groupId >
22+ <artifactId >plantuml-maven-plugin</artifactId >
23+ <version >1.2</version >
24+ <executions >
25+ <execution >
26+ <phase >process-resources</phase >
27+ <goals >
28+ <goal >generate</goal >
29+ </goals >
30+ </execution >
31+ </executions >
32+ <configuration >
33+ <sourceFiles >
34+ <directory >${basedir} /src/main/resources/uml/diagrams</directory >
35+ <includes >
36+ <include >**/*.plantuml</include >
37+ </includes >
38+ </sourceFiles >
39+ <format >svg</format >
40+ <outputDirectory >${basedir} /target/html/uml</outputDirectory >
41+ </configuration >
42+ <dependencies >
43+ <dependency >
44+ <groupId >net.sourceforge.plantuml</groupId >
45+ <artifactId >plantuml</artifactId >
46+ <version > 1.2018.8</version >
47+ </dependency >
48+ </dependencies >
49+ </plugin >
50+ <plugin >
51+ <groupId >com.ruleoftech</groupId >
52+ <artifactId >markdown-page-generator-plugin</artifactId >
53+ <version >2.1.0</version >
54+ <executions >
55+ <execution >
56+ <phase >process-resources</phase >
57+ <goals >
58+ <goal >generate</goal >
59+ </goals >
60+ </execution >
61+ </executions >
62+ <configuration >
63+ <inputDirectory >${project.basedir} /src/main/resources/markdown</inputDirectory >
64+ <recursiveInput >true</recursiveInput >
65+ <inputFileExtensions >md, markdown</inputFileExtensions >
66+ <inputEncoding >UTF-8</inputEncoding >
67+ <outputEncoding >UTF-8</outputEncoding >
68+ <headerHtmlFile >${basedir} /src/main/resources/html/header.html</headerHtmlFile >
69+ <copyDirectories >css</copyDirectories >
70+ <transformRelativeMarkdownLinks >true</transformRelativeMarkdownLinks >
71+ </configuration >
72+ </plugin >
73+ <!-- plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId>
74+ <version>1.16</version> <configuration> <verbose>false</verbose> <detail>true</detail>
75+ <licenseName>cc-by-4.0</licenseName> <licenseResolver>${project.basedir}/src/license</licenseResolver>
76+ <organizationName>itsallcode.org</organizationName> <inceptionYear>2018</inceptionYear>
77+ <excludes> </excludes> <failOnMissingHeader>true</failOnMissingHeader> <failIfWarning>true</failIfWarning>
78+ <failOnNotUptodateHeader>true</failOnNotUptodateHeader> <encoding>UTF-8</encoding>
79+ <dryRun>false</dryRun> </configuration> <executions> <execution> <id>check-file-header</id>
80+ <goals> <goal>check-file-header</goal> </goals> <phase>validate</phase> </execution>
81+ <execution> <id>first</id> <goals> <goal>update-file-header</goal> </goals>
82+ <phase>process-sources</phase> <configuration> <roots> <root>src/markdown</root>
83+ </roots> </configuration> </execution> </executions> </plugin -->
84+ </plugins >
85+ </build >
86+ </project >
0 commit comments