Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ✨ add Sbt-Dynver plugin #64

Merged
merged 1 commit into from
Jul 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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