From 3479ea3f3095aab4278b657061cb1c9c1435cb69 Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Fri, 12 Jan 2018 19:33:47 +0100 Subject: [PATCH] Fix runelite-plugin-archetype - Use "install" instead of "verify" so archetype test can pick up the latest RuneLite version - Remove "clean" from goals.txt Fixes #364 Signed-off-by: Tomas Slusny --- .../src/test/resources/projects/compilationtest/goal.txt | 2 +- travis/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runelite-plugin-archetype/src/test/resources/projects/compilationtest/goal.txt b/runelite-plugin-archetype/src/test/resources/projects/compilationtest/goal.txt index 31ed2f87a2..0b5987362f 100644 --- a/runelite-plugin-archetype/src/test/resources/projects/compilationtest/goal.txt +++ b/runelite-plugin-archetype/src/test/resources/projects/compilationtest/goal.txt @@ -1 +1 @@ -clean verify +verify diff --git a/travis/build.sh b/travis/build.sh index 28eab54eaf..f833b4f399 100755 --- a/travis/build.sh +++ b/travis/build.sh @@ -8,5 +8,5 @@ PROJECT_VERSION=`mvn -q -Dexec.executable="echo" -Dexec.args='${project.version} if [[ "${TRAVIS_PULL_REQUEST}" == "false" && $PROJECT_VERSION == *"-SNAPSHOT" && "$TRAVIS_BRANCH" == "master" ]]; then mvn clean deploy --settings travis/settings.xml else - mvn clean verify --settings travis/settings.xml + mvn clean install --settings travis/settings.xml fi