<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.buschmais.jqassistant.examples</groupId>
        <artifactId>jqassistant.examples.plugins</artifactId>
        <version>1.1.0</version>
    </parent>
    <artifactId>jqassistant.examples.plugins.project</artifactId>

    <!-- tag::build[] -->
    <build>
        <plugins>
            <plugin>
                <groupId>com.buschmais.jqassistant.scm</groupId>
                <artifactId>jqassistant-maven-plugin</artifactId>
                <version>${project.version}</version>
                <configuration>
                    <reportProperties>
                        <customReport.fileName>target/customReport.txt</customReport.fileName>
                    </reportProperties>
                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>com.buschmais.jqassistant.examples</groupId>
                        <artifactId>jqassistant.examples.plugins.scanner</artifactId>
                        <version>${project.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>com.buschmais.jqassistant.examples</groupId>
                        <artifactId>jqassistant.examples.plugins.rule</artifactId>
                        <version>${project.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>com.buschmais.jqassistant.examples</groupId>
                        <artifactId>jqassistant.examples.plugins.report</artifactId>
                        <version>${project.version}</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>
    <!-- end::build[] -->

</project>