Reputation: 2477
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
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
Reputation: 2477
You can disable RAT by adding -Drat.skip=true
to your maven command line.
Upvotes: 45