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

Introduce sbt-ci-release + change groupId to com.typesafe.play #169

Merged
merged 5 commits into from
May 11, 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
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")