Fork me on GitHub

Introduction

This plugin attaches the reports of some quality plugins during install, so they are deployed by default. Missing reports are ignored. For a list of attached reports, take a look at FileToClassifiers

Usage

Note that by default the plugin is invoked during the install phase, as only after verify we have the artifacts to attache.

<build>
    <plugins>
        <plugin>
            <groupId>net.oneandone.maven.plugins</groupId>
            <artifactId>attach-qar-maven-plugin</artifactId>
            <version>1.3-SNAPSHOT</version>
            <executions>
                <execution>
                    <id>default-attach</id>
                    <goals>
                        <goal>attach</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
   </plugin>
</build>