Merge branch release/0.5.0 into master

Add digraph-dependency-maven-plugin 0.1.2

Signed-off-by: Paul Campbell <pcampbell@kemitix.net>
This commit is contained in:
Paul Campbell 2016-01-07 13:31:42 +00:00
commit d338e013a3
4 changed files with 37 additions and 2 deletions

View file

@ -1 +1,3 @@
language: java
language: java
jdk:
- oraclejdk8

View file

@ -1,6 +1,11 @@
CHANGELOG
=========
0.5.0
------
* Add digraph-dependency-maven-plugin 0.1.2
0.4.0
------

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

19
pom.xml
View file

@ -4,7 +4,7 @@
<groupId>net.kemitix</groupId>
<artifactId>kemitix-parent</artifactId>
<version>0.4.0</version>
<version>0.5.0</version>
<packaging>pom</packaging>
<name>Kemitix Parent</name>
@ -313,6 +313,23 @@
</execution>
</executions>
</plugin><!-- highwheel-maven -->
<plugin>
<groupId>net.kemitix</groupId>
<artifactId>digraph-dependency-maven-plugin</artifactId>
<version>0.1.2</version>
<configuration>
<basePackage>net.kemitix</basePackage>
</configuration>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>digraph</goal>
</goals>
</execution>
</executions>
</plugin><!-- digraph-dependency-maven-plugin -->
</plugins>
</build>