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:
parent
0fa0ed9658
commit
c7ded6a2ba
1 changed files with 31 additions and 25 deletions
6
pom.xml
6
pom.xml
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue