Skip to content

Commit

Permalink
Merge pull request #169 from mkurz/sbt-ci-release
Browse files Browse the repository at this point in the history
Introduce sbt-ci-release + change groupId to com.typesafe.play
  • Loading branch information
mkurz authored May 11, 2022
2 parents dd8aa46 + cf163dc commit 45b2621
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 34 deletions.
28 changes: 0 additions & 28 deletions .appveyor.yml

This file was deleted.

5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ lazy val `play-file-watch` = project
"io.methvin" % "directory-watcher" % "0.15.1",
("com.github.pathikrit" %% "better-files" % pickVersion(
scalaBinaryVersion.value,
default = "3.8.0",
default = "3.9.1",
forScala210 = "2.17.0"
)).cross(CrossVersion.for3Use2_13),
scalaBinaryVersion.value match {
Expand All @@ -47,7 +47,8 @@ lazy val `play-file-watch` = project
Set.empty
else
Set(
organization.value %% name.value % previousStableVersion.value
// TODO: Change org to organization.value later, see https://github.com/playframework/play-file-watch/pull/169
"com.lightbend.play" %% name.value % previousStableVersion.value
.getOrElse(throw new Error("Unable to determine previous version"))
)
},
Expand Down
2 changes: 1 addition & 1 deletion project/Common.scala
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ object Common extends AutoPlugin {

override def globalSettings =
Seq(
organization := "com.lightbend.play",
organization := "com.typesafe.play",
organizationName := "Lightbend Inc.",
organizationHomepage := Some(url("https://www.lightbend.com/")),
homepage := Some(url(s"https://github.com/playframework/${repoName}")),
Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.0.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.0.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")

0 comments on commit 45b2621

Please sign in to comment.