Work on #190: Add automagic puml generation in pom.xml's

This commit is contained in:
NooBxGockeL
2016-08-30 13:24:53 +02:00
parent 6575b3ae99
commit e73867f9a1
4 changed files with 86 additions and 4 deletions

27
pom.xml
View File

@ -45,8 +45,9 @@
<systemrules.version>1.15.1</systemrules.version>
<mockito.version>1.10.19</mockito.version>
<hierarchical-junit-runner-version>4.12.1</hierarchical-junit-runner-version>
<apache-httpcomponents.version>4.5.2</apache-httpcomponents.version>
<apache-httpcomponents.version>4.5.2</apache-httpcomponents.version>
<htmlunit.version>2.22</htmlunit.version>
<urm.version>1.4.0</urm.version>
</properties>
<modules>
<module>abstract-factory</module>
@ -422,6 +423,30 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.markusmo3.urm</groupId>
<artifactId>urm-maven-plugin</artifactId>
<version>${urm.version}</version>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>map</goal>
</goals>
</execution>
</executions>
<configuration>
<outputDirectory>${project.basedir}/etc</outputDirectory>
<packages>
<param>com.iluwatar</param>
</packages>
<skipForProjects>
<!-- skip for parent project -->
<param>java-design-patterns</param>
</skipForProjects>
</configuration>
</plugin>
</plugins>
</build>