Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Verify the Code's License Headers

Code Block

cd apache-cloudstack-$version-incubating-src
mvn --projects='org.apache.cloudstack:cloudstack' org.apache.rat:apache-rat-plugin:0.8:check

The build should FAIL if there are any non-compliant files that are not specifically excluded from the ASF license header requirement. You can optionally review the target/rat.txt file after the run completes. If the build passes, RAT is saying that we are compliant and this test passes.

Compile

Code Block

cd apache-cloudstack-$version-incubating-src
mvn -P deps
ant clean-all build-all

...