- Documentation (2.5.0-rc1)
- Release Notes
- Tutorials
- Reference
- Introduction
- Settings Files
- Ivy Files
- Ant Tasks
- artifactproperty
- artifactreport
- buildlist
- buildnumber
- buildobr
- cachefileset
- cachepath
- checkdepsupdate
- cleancache
- configure
- convertmanifest
- convertpom
- deliver
- dependencytree
- findrevision
- fixdeps
- info
- install
- listmodules
- makepom
- post resolve tasks
- publish
- report
- repreport
- resolve
- resources
- retrieve
- settings
- var
- Using standalone
- OSGi
- Developer doc
repreport
[since 1.4]
Generates reports about dependencies among several modules in the repository (repreport stands for repository report).
This task is similar to the report task, except that instead of working on a single module you just resolved, it works with a set of modules in your repository.
Note that the set of modules for which you generate the report is determined by setting organisation module and revision and using a matcher, but also by the dependencies of these modules. No dependency is excluded.
Usually the most useful report is a graph, you can generate either a GraphML file that you can then easily layout using yEd, or a DOT file which is the format recognized by Graphviz, which is a free tool that does automatic graph layout, and can thus be used to generate automatically a GIF, PNG or SVG of the dependencies between all your modules.
Limitation: this task requires to be able to browse the repository, and is thus limited to resolvers supporting repository listing. In particular, it means it doesn’t work to report all organizations in a repository using m2compatible mode. Moreover, to be able to list organizations, this task requires an [organisation] token in the resolver(s) used.
Attributes
Attribute | Description | Required |
---|---|---|
organisation |
A pattern matching the organisation of the modules for which the report should be generated |
No, defaults to |
module |
A pattern matching the name of the modules for which the report should be generated |
No, defaults to |
branch |
The name of the branch of the modules for which the report should be generated |
No, defaults to no branch specified |
revision |
The revision of the modules for which the report should be generated. Only one revision per module will be used, so most of the time keeping the default ( |
No, defaults to |
todir |
the directory to which reports should be generated |
No, defaults to execution directory |
outputname |
the name to use for the generate file (without extension) |
No, defaults to |
xml |
|
No, defaults to |
xsl |
|
No, defaults to |
xslfile |
indicates which xsl file should be used to generate the report |
Yes, if you want to use XSLT |
xslext |
indicates the extension to use when generating report using XSLT |
No, defaults to |
graph |
|
No, defaults to |
dot |
|
No, defaults to |
matcher |
the name of the matcher to use for matching modules names and organisations in your repository |
No. Defaults to |
validate |
|
No. Defaults to default Ivy value (as configured in settings) |
settingsRef |
A reference to Ivy settings that must be used by this task (since 2.0) |
No, defaults to |
Examples
To generate a XML report for all the latest versions of all the modules in your repository:
<ivy:repreport/>
To generate a GraphML report for all the latest versions of all the modules in your repository:
<ivy:repreport xml="false" graph="true"/>
To generate a XML report for all the latest versions of the modules from the organisation foo in your repository:
<ivy:repreport organisation="foo"/>
To generate a XML report for all the versions on the 1.x stream of the modules named bar* from the organisation foo in your repository:
<ivy:repreport organisation="foo" module="bar*" revision="1.+" matcher="glob"/>
To generate an XML report using a custom stylesheet:
<ivy:repreport xsl="true" xslfile="my-custom-stylesheet.xsl" xslext="xml"/>
To generate an XML report using a custom stylesheet which needs some parameters:
<ivy:repreport xsl="true" xslfile="my-custom-stylesheet.xsl" xslext="xml">
<param name="param1" expression="value1"/>
<param name="param2" expression="value2"/>
</report>