Skip to content

Commit

Permalink
Play 2.8.0-M4 (#57)
Browse files Browse the repository at this point in the history
* Play 2.8.0-M4

* Add silencer plugin which is required by play-json
  • Loading branch information
marcospereira authored Aug 15, 2019
1 parent 1d3a449 commit 902ac4f
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions project/OmnidocBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ object OmnidocBuild {

val snapshotVersionLabel = "2.8.x"

val playVersion = sys.props.getOrElse("play.version", "2.8.0-M3")
val scalaTestPlusPlayVersion = sys.props.getOrElse("scalatestplus-play.version", "5.0.0-M3")
val playJsonVersion = sys.props.getOrElse("play-json.version", "2.8.0-M4")
val playSlickVersion = sys.props.getOrElse("play-slick.version", "5.0.0-M4")
val playVersion = sys.props.getOrElse("play.version", "2.8.0-M4")
val scalaTestPlusPlayVersion = sys.props.getOrElse("scalatestplus-play.version", "5.0.0-M4")
val playJsonVersion = sys.props.getOrElse("play-json.version", "2.8.0-M5")
val playSlickVersion = sys.props.getOrElse("play-slick.version", "5.0.0-M5")
val maybeTwirlVersion = sys.props.get("twirl.version")

// List Play artifacts so that they can be added as dependencies
Expand Down Expand Up @@ -93,7 +93,6 @@ object OmnidocBuild {
//Duplicate of sbt'd updateClassifiers for 'playdoc' specific use")
val updatePlaydocClassifiers = TaskKey[(sbt.librarymanagement.UpdateReport, sbt.librarymanagement.UpdateReport)] ("updatePlaydocClassifiers")


lazy val omnidoc = project
.in(file("."))
.enablePlugins(PlayLibrary, PlayReleaseBase)
Expand Down Expand Up @@ -132,7 +131,11 @@ object OmnidocBuild {
)
case _ => Nil
}
}
},
libraryDependencies ++= Seq(
compilerPlugin("com.github.ghik" %% "silencer-plugin" % "1.4.2"),
"com.github.ghik" %% "silencer-lib" % "1.4.2" % Omnidoc.name
)
)

def releaseSettings: Seq[Setting[_]] = Seq(
Expand Down

0 comments on commit 902ac4f

Please sign in to comment.