mjaggard
mjaggard

Reputation: 2477

How can I disable Apache RAT (Release Audit Tool) in Maven

I have checked out Apache Archiva Redback and the compile is failing when I do mvn install because Apache RAT is failing and I haven't changed anything yet.

Upvotes: 18

Views: 8658

Answers (2)

Frank.Chang
Frank.Chang

Reputation: 993

You can config it in your pom file.

<plugin>
    <groupId>org.apache.rat</groupId>
    <artifactId>apache-rat-plugin</artifactId>

    <configuration>
        <skip>true</skip>
    </configuration>
</plugin>

Upvotes: 2

mjaggard
mjaggard

Reputation: 2477

You can disable RAT by adding -Drat.skip=true to your maven command line.

Upvotes: 45

Related Questions