Skip to content

Commit

Permalink
feat: ✨ add Sbt-Dynver plugin
Browse files Browse the repository at this point in the history
Fix #39

Signed-off-by: Felipe Bonezi <felipebonezi@gmail.com>
  • Loading branch information
felipebonezi committed Jul 23, 2022
1 parent 1d98037 commit a7a54ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion conf/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ play {
maintainer = "Felipe Bonezi"
host = "http://localhost:9000"
name = "playframework-core"
version = "1.3.1"
}
i18n {
langs = [ "en-US" ]
Expand Down
1 change: 0 additions & 1 deletion project/PlayCore.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ object PlayCore extends AutoPlugin {
override def projectSettings
: Seq[Def.Setting[_ >: String with File with Task[Seq[String]] with Boolean]] = Seq(
name := conf.getString("play.app.name"),
version := conf.getString("play.app.version"),
unmanagedBase := baseDirectory.value / "routing",
Test / scalacOptions ++= Seq("-Yrangepos"),
Test / javaOptions ++= Seq("-Dconfig.resource=application.test.conf"),
Expand Down
3 changes: 3 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ addSbtPlugin("com.typesafe.play" % "sbt-play-ebean" % "6.2.0-RC7")
// Sbt Header check.
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.7.0")

// Sbt Dynver plugin
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1")

// Visualize your project's dependencies.
// `dependencyTree`: Shows an ASCII tree representation of the project's dependencies
// `dependencyBrowseTree`: Opens a browser window with a visualization of
Expand Down

0 comments on commit a7a54ec

Please sign in to comment.