Skip to content
This repository has been archived by the owner on Apr 10, 2019. It is now read-only.

Commit

Permalink
#150, test: Another try to resolve travis build problem
Browse files Browse the repository at this point in the history
  • Loading branch information
slavaschmidt committed Jun 20, 2016
1 parent fc69e36 commit 9355139
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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: _*)
Expand All @@ -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"))
Expand Down Expand Up @@ -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)

Expand Down

0 comments on commit 9355139

Please sign in to comment.