Skip to content

Commit

Permalink
Add checkin of doc/dependency-graph.puml.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Jan 19, 2024
1 parent fe5fc7a commit c701ae5
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,8 @@
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
<tagNameFormat>v@{project.version}</tagNameFormat>
<preparationGoals>clean scm:checkin verify</preparationGoals>
<completionGoals>clean scm:checkin verify</completionGoals>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -752,12 +754,22 @@
<version>${depgraph-maven-plugin.version}</version>
<configuration>
<graphFormat>puml</graphFormat>
<scope>compile</scope>
<classpathScope>compile</classpathScope>
<showClassifiers>true</showClassifiers>
<showVersions>true</showVersions>
<showConflicts>true</showConflicts>
<showDuplicates>true</showDuplicates>
<outputFileName>dependency-graph</outputFileName>
<outputDirectory>${project.basedir}/doc</outputDirectory>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>graph</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
Expand Down Expand Up @@ -814,6 +826,15 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>2.0.1</version>
<configuration>
<message>[dependency-graph] Update dependencies in UML overview.</message>
<includes>doc/dependency-graph.puml</includes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
Expand Down

0 comments on commit c701ae5

Please sign in to comment.