From 935513976f97dc52749503ffa070b96bba43916d Mon Sep 17 00:00:00 2001 From: Slava Schmidt Date: Mon, 20 Jun 2016 16:19:39 +0200 Subject: [PATCH] #150, test: Another try to resolve travis build problem --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index b77bde9..48a69d7 100644 --- a/build.sbt +++ b/build.sbt @@ -52,7 +52,7 @@ lazy val swaggerParser = (project in file("swagger-parser")) name := "swagger-parser", libraryDependencies ++= deps.swaggerParser(scalaVersion.value) ++ deps.test ) - .dependsOn(swaggerModel % "compile->compile", apiFirstCore % "compile->compile") + .dependsOn(swaggerModel, apiFirstCore) lazy val playScalaGenerator = (project in file("play-scala-generator")) .settings(commonSettings: _*) @@ -61,7 +61,7 @@ lazy val playScalaGenerator = (project in file("play-scala-generator")) name := "play-scala-generator", libraryDependencies ++= deps.playScalaGenerator ++ deps.test ) - .dependsOn(apiFirstCore % "compile->compile") + .dependsOn(apiFirstCore) // This is the sbt plugin lazy val plugin = (project in file("plugin")) @@ -105,7 +105,7 @@ lazy val root = (project in file(".")) .settings(commonSettings: _*) .settings( name := "play-swagger-root", - aggregate in update := false + aggregate in update := true ) .aggregate(common, swaggerModel, api, swaggerParser, apiFirstCore, playScalaGenerator, plugin)