Add digraph-dependency-maven-plugin 0.1.0
Signed-off-by: Paul Campbell <pcampbell@kemitix.net>
This commit is contained in:
parent
1077805be3
commit
60dd8c5e7d
2 changed files with 26 additions and 0 deletions
11
README.md
11
README.md
|
@ -170,6 +170,17 @@ classes.
|
||||||
|
|
||||||
The plugin will `analyse` the project during the `verify` phase.
|
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
|
# Distribution Management
|
||||||
|
|
||||||
Remote repositories are provided for the Sonatype Nexus Snapshots and Nexus Release
|
Remote repositories are provided for the Sonatype Nexus Snapshots and Nexus Release
|
||||||
|
|
15
pom.xml
15
pom.xml
|
@ -313,6 +313,21 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin><!-- highwheel-maven -->
|
</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>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue