Skip to content

Commit

Permalink
Merge pull request #8 from chris-martin/servlet-api-optional-and-prov…
Browse files Browse the repository at this point in the history
…ided

Make Servlet API dependency provided and optional
  • Loading branch information
chris-martin committed Nov 15, 2013
2 parents 98e0913 + 6b275de commit 8224cd3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,12 @@ object Build extends Build {
description := """
|A sensible default configuration factory for a web application.
""".stripMargin.trim,
libraryDependencies ++= Seq(servletApi, typesafeConfig),
libraryDependencies ++= Seq(jettyPlus, scalajHttp).map(_ % "test")
libraryDependencies ++= Seq(
typesafeConfig,
servletApi % "provided,optional",
jettyPlus % "test",
scalajHttp % "test"
)
): _*)
)

Expand Down

0 comments on commit 8224cd3

Please sign in to comment.