From 12ce7b75dba4646d16b5b917eff287a413b6f28a Mon Sep 17 00:00:00 2001 From: Spencer Gibb Date: Mon, 12 Oct 2015 12:31:50 -0600 Subject: [PATCH] add --fail-at-end to mvn --- .travis.yml | 2 +- README.md | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 395d268..9f054e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ before_install: - git config credential.helper "store --file=.git/credentials" - echo "https://$GH_TOKEN:@github.com" > .git/credentials install: -- ./mvnw --update-snapshots clean package -Dmaven.test.redirectTestOutputToFile=true +- ./mvnw --fail-at-end --update-snapshots clean package -Dmaven.test.redirectTestOutputToFile=true env: global: - GIT_NAME="Dave Syer" diff --git a/README.md b/README.md index 7d6e668..85a45f0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ -Integration test projects for Spring Cloud. Not necessarily full demo -or sample apps, but each one implementing a single scenario or small -set of scenarios. Very useful for testing classpath combinations -(e.g. making sure that optional depednencies really are optional). +## Integration test projects for Spring Cloud + +Not necessarily full demo or sample apps, but each one implementing a single scenario or small set of scenarios. Very useful for testing classpath combinations (e.g. making sure that optional depednencies really are optional). + +### Running + +`./mvnw --fail-at-end --update-snapshots clean package`