Merge branch '#56-Auto-Generate-UML'
This commit is contained in:
62
pom.xml
62
pom.xml
@@ -149,6 +149,68 @@
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>generate-docs</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>plantuml-generator-maven-plugin</artifactId>
|
||||
<groupId>de.elnarion.maven</groupId>
|
||||
<version>1.1.2</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>generate-simple-diagram</id>
|
||||
<goals>
|
||||
<goal>generate</goal>
|
||||
</goals>
|
||||
<phase>generate-resources</phase>
|
||||
<configuration>
|
||||
<outputFilename>easydrop.puml</outputFilename>
|
||||
<scanPackages>
|
||||
<scanPackage>
|
||||
de.rwu.easydrop
|
||||
</scanPackage>
|
||||
</scanPackages>
|
||||
<blacklistRegexp>.*package-info.*</blacklistRegexp>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>com.github.jeluard</groupId>
|
||||
<artifactId>plantuml-maven-plugin</artifactId>
|
||||
<version>1.2</version>
|
||||
<configuration>
|
||||
<sourceFiles>
|
||||
<directory>${basedir}/target/generated-docs</directory>
|
||||
<includes>
|
||||
<include>*.puml</include>
|
||||
</includes>
|
||||
</sourceFiles>
|
||||
<outputDirectory>${basedir}/target/generated-docs</outputDirectory>
|
||||
</configuration>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>net.sourceforge.plantuml</groupId>
|
||||
<artifactId>plantuml</artifactId>
|
||||
<version>1.2023.7</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>create-docs</id>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>generate</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<reporting>
|
||||
|
||||
Reference in New Issue
Block a user