Put graphviz build plugin behind a profile

Allows normal builds to run without needing to have the GraphViz package installed.
This commit is contained in:
Paul Campbell 2022-12-04 08:22:01 +00:00
parent 0fa0ed9658
commit c7ded6a2ba

View file

@ -24,6 +24,10 @@
<maven-graph-plugin.version>1.45</maven-graph-plugin.version>
</properties>
<profiles>
<profile>
<id>graphviz</id>
<!-- mvn -B -P graphviz validate -->
<build>
<plugins>
<plugin>
@ -49,5 +53,7 @@
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>