Add digraph-dependency-maven-plugin 0.1.0

Signed-off-by: Paul Campbell <pcampbell@kemitix.net>
This commit is contained in:
Paul Campbell 2016-01-07 12:45:50 +00:00
parent 1077805be3
commit 60dd8c5e7d
2 changed files with 26 additions and 0 deletions

View file

@ -170,6 +170,17 @@ classes.
The plugin will `analyse` the project during the `verify` phase.
## Digraph Dependency Plugin
The [Digraph Dependency Plugin](https://github.com/kemitix/digraph-dependency-maven-plugin)
generates a DOT file diagram showing the dependencies between packages in a project.
### Configuration
The plugin will generate the `target/digraph.dot` file during the `verify` phase.
The plugin will filter to packages within the `net.kemitix` package namespace.
# Distribution Management
Remote repositories are provided for the Sonatype Nexus Snapshots and Nexus Release

15
pom.xml
View file

@ -313,6 +313,21 @@
</execution>
</executions>
</plugin><!-- highwheel-maven -->
<plugin>
<groupId>net.kemitix</groupId>
<artifactId>digraph-dependency-maven-plugin</artifactId>
<version>0.1.0</version>
<configuration>
<basePackage>net.kemitix</basePackage>
</configuration>
<executions>
<phase>validate</phase>
<goals>
<goal>digraph</goal>
</goals>
</executions>
</plugin><!-- digraph-dependency-maven-plugin -->
</plugins>
</build>