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:
commit
d338e013a3
4 changed files with 37 additions and 2 deletions
|
@ -1 +1,3 @@
|
||||||
language: java
|
language: java
|
||||||
|
jdk:
|
||||||
|
- oraclejdk8
|
|
@ -1,6 +1,11 @@
|
||||||
CHANGELOG
|
CHANGELOG
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
0.5.0
|
||||||
|
------
|
||||||
|
|
||||||
|
* Add digraph-dependency-maven-plugin 0.1.2
|
||||||
|
|
||||||
0.4.0
|
0.4.0
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|
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
|
||||||
|
|
19
pom.xml
19
pom.xml
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
<groupId>net.kemitix</groupId>
|
<groupId>net.kemitix</groupId>
|
||||||
<artifactId>kemitix-parent</artifactId>
|
<artifactId>kemitix-parent</artifactId>
|
||||||
<version>0.4.0</version>
|
<version>0.5.0</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<name>Kemitix Parent</name>
|
<name>Kemitix Parent</name>
|
||||||
|
@ -313,6 +313,23 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin><!-- highwheel-maven -->
|
</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>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue