New issue 13 by jeanpaul.guigui: Ignoring test scope module dependency
http://code.google.com/p/maven-overview-plugin/issues/detail?id=13
Should be possible to ignore the test scope dependencies.
For complex project for instance, the module JUnit is appearing as the
"main" one because all the projects is using it. But it's making the graph
not readable.
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
This issue is now blocking issue 11.
See http://code.google.com/p/maven-overview-plugin/issues/detail?id=11
Comment #1 on issue 13 by hubert.iwaniuk: Ignoring test scope module
dependency
http://code.google.com/p/maven-overview-plugin/issues/detail?id=13
Created milestone for it.
Please take a look at http://groups.google.com/group/maven-overview-plugin-
discuss/web/roadmap-draft
Let me know if you fill like filtering should be done differently than
described in
Road Map.
Perfect.
But according to the description, the "excludes" option is already supposed
to work ?
Could you elaborate and give a configuration sample ?
So as I just checked in code.
Exclusions will not work if you have inclusions defined in your
configuration.
<plugin>
<groupId>com.agilejava.maven.plugins</groupId>
<artifactId>maven-overview-plugin</artifactId>
<configuration>
<width>900</width>
<height>900</height>
<suppressedScopes />
<includes>com.agilejava.maven.plugins, org.apache.maven.reporting,
org.apache.maven.shared, jung, org.apache.maven.doxia, commons-collections,
colt,
concurrent</includes>
<excludes>org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7</excludes>
</configuration>
In that case doxia-sink-api is not going to be excluded, because it was
included by
includes filter, that is accidental behavior (I implemented it wrong).
As for what you can put into excludes parameter it is coma separated list
of artifact
IDs, as shown above (groupId:artifactId:type:version).
Hope it helps.