From c0a643c0b0ea0a51a42f7f6a36f59b3ea48b3bcd Mon Sep 17 00:00:00 2001 From: Jeff Klukas Date: Wed, 20 Jun 2018 08:46:35 -0400 Subject: [PATCH] Avoid exit code mangling by ensuring docker plugin doesn't trigger compile See explanation of the underlying issue in https://github.com/Tapad/sbt-docker-compose/issues/23 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 0f6784e..25cd9c7 100644 --- a/build.sbt +++ b/build.sbt @@ -94,7 +94,7 @@ assemblyShadeRules in assembly := Seq( ShadeRule.rename("com.trueaccord.scalapb.**" -> "shadescalapb.@1").inAll ) -addCommandAlias("ci", ";clean ;compile ;scalastyle ;test:scalastyle ;coverage ;dockerComposeTest ;coverageReport") +addCommandAlias("ci", ";clean ;compile ;test:compile ;scalastyle ;test:scalastyle ;coverage ;dockerComposeTest ;coverageReport") val scalaStyleConfigUrl = Some(url("https://raw.githubusercontent.com/mozilla/moztelemetry/master/scalastyle-config.xml")) (scalastyleConfigUrl in Compile) := scalaStyleConfigUrl