18

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.

mjaggard
  • 2,389
  • 1
  • 23
  • 45

2 Answers2

43

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

mjaggard
  • 2,389
  • 1
  • 23
  • 45
2

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>
Frank.Chang
  • 883
  • 1
  • 10
  • 10