Repository: yetus Updated Branches: refs/heads/master 2bf54995f -> 362d621d0
YETUS-509. Remove maven-eclipse plugin support Signed-off-by: Akira Ajisaka <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/yetus/repo Commit: http://git-wip-us.apache.org/repos/asf/yetus/commit/362d621d Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/362d621d Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/362d621d Branch: refs/heads/master Commit: 362d621d0fb90909a4e6b74ef58a2727ededfc84 Parents: 2bf5499 Author: Allen Wittenauer <[email protected]> Authored: Sun Jun 4 08:43:17 2017 -0700 Committer: Allen Wittenauer <[email protected]> Committed: Sun Jun 4 08:44:52 2017 -0700 ---------------------------------------------------------------------- precommit/test-patch.d/maven.sh | 37 ------------------------------------ 1 file changed, 37 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/yetus/blob/362d621d/precommit/test-patch.d/maven.sh ---------------------------------------------------------------------- diff --git a/precommit/test-patch.d/maven.sh b/precommit/test-patch.d/maven.sh index 60fa1b6..a0aa625 100755 --- a/precommit/test-patch.d/maven.sh +++ b/precommit/test-patch.d/maven.sh @@ -27,7 +27,6 @@ MAVEN_CUSTOM_REPOS_DIR="${HOME}/yetus-m2" MAVEN_DEPENDENCY_ORDER=true add_test_type mvnsite -add_test_type mvneclipse add_build_tool maven ## @description Add the given test type as requiring a mvn install during the branch phase @@ -97,7 +96,6 @@ function maven_initialize { # we need to do this before docker does it as root - maven_add_install mvneclipse maven_add_install mvnsite maven_add_install unit @@ -472,41 +470,6 @@ function mvnsite_postcompile return 0 } -## @description Make sure Maven's eclipse generation works. -## @audience private -## @stability evolving -## @replaceable no -## @return 0 on success -## @return 1 on failure -function mvneclipse_postcompile -{ - declare repostatus=$1 - declare result=0 - - if [[ ${BUILDTOOL} != maven ]]; then - return 0 - fi - - if ! verify_needed_test javac; then - return 0 - fi - - if [[ "${repostatus}" = branch ]]; then - big_console_header "maven eclipse verification: ${PATCH_BRANCH}" - else - big_console_header "maven eclipse verification: ${BUILDMODE}" - fi - - personality_modules "${repostatus}" mvneclipse - modules_workers "${repostatus}" mvneclipse eclipse:clean eclipse:eclipse - result=$? - modules_messages "${repostatus}" mvneclipse true - if [[ ${result} != 0 ]]; then - return 1 - fi - return 0 -} - ## @description Verify mvn install works ## @audience private ## @stability evolving
