From 9de5340e2482966b3f4dabe4552478aac62513f7 Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Thu, 15 Sep 2016 23:00:20 +0200 Subject: [PATCH] Fixing failing build because travis was using master branch of the lessons instead of develop --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index e1b934356..d94594b01 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ install: "/bin/true" script: - mvn clean install - git clone https://github.com/WebGoat/WebGoat-Lessons.git + - git checkout develop - mvn -file ./WebGoat-Lessons/pom.xml clean package - cp -fa ./WebGoat-Lessons/target/plugins/*.jar ./webgoat-container/src/main/webapp/plugin_lessons/ - if [[ $TRAVIS_PULL_REQUEST == "false" ]]; then mvn "-Dbuild.number=$TRAVIS_BUILD_NUMBER" -Prun-integration-tests clean install; else mvn clean install; fi