Skip to content

Commit

Permalink
[FLINK-7879][travis] Only execute RAT plugin in "Misc" profile
Browse files Browse the repository at this point in the history
This closes apache#4867.
  • Loading branch information
yew1eb authored and zentol committed Oct 23, 2017
1 parent 25c95f2 commit 99be784
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ under the License.
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>0.11</version><!--$NO-MVN-MAN-VER$-->
<version>0.12</version><!--$NO-MVN-MAN-VER$-->
<inherited>false</inherited>
<executions>
<execution>
Expand Down
8 changes: 4 additions & 4 deletions tools/travis_mvn_watchdog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,22 +117,22 @@ case $TEST in
(core)
MVN_COMPILE_MODULES="-pl $MODULES_CORE -am"
MVN_TEST_MODULES="-pl $MODULES_CORE"
MVN_COMPILE_OPTIONS="-Dcheckstyle.skip=true -Djapicmp.skip=true"
MVN_COMPILE_OPTIONS="-Dcheckstyle.skip=true -Djapicmp.skip=true -Drat.skip=true"
;;
(libraries)
MVN_COMPILE_MODULES="-pl $MODULES_LIBRARIES -am"
MVN_TEST_MODULES="-pl $MODULES_LIBRARIES"
MVN_COMPILE_OPTIONS="-Dcheckstyle.skip=true -Djapicmp.skip=true"
MVN_COMPILE_OPTIONS="-Dcheckstyle.skip=true -Djapicmp.skip=true -Drat.skip=true"
;;
(connectors)
MVN_COMPILE_MODULES="-pl $MODULES_CONNECTORS -am"
MVN_TEST_MODULES="-pl $MODULES_CONNECTORS"
MVN_COMPILE_OPTIONS="-Dcheckstyle.skip=true -Djapicmp.skip=true"
MVN_COMPILE_OPTIONS="-Dcheckstyle.skip=true -Djapicmp.skip=true -Drat.skip=true"
;;
(tests)
MVN_COMPILE_MODULES="-pl $MODULES_TESTS -am"
MVN_TEST_MODULES="-pl $MODULES_TESTS"
MVN_COMPILE_OPTIONS="-Dcheckstyle.skip=true -Djapicmp.skip=true"
MVN_COMPILE_OPTIONS="-Dcheckstyle.skip=true -Djapicmp.skip=true -Drat.skip=true"
;;
(misc)
NEGATED_CORE=\!${MODULES_CORE//,/,\!}
Expand Down

0 comments on commit 99be784

Please sign in to comment.