Skip to content

Commit

Permalink
Update sbt, scripted-plugin to 1.5.6 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Dec 10, 2021
1 parent e295ca8 commit 43f6959
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ libraryDependencies += {
val semVer = org.gfccollective.semver.SemVer(sugarVersion)
s"${semVer.major}.${semVer.minor}.${semVer.point}"
}
sbt.Defaults.sbtPluginExtra("net.virtual-void" % "sbt-dependency-graph" % sbtDependencyGraphVersion(version.value), (sbtBinaryVersion in pluginCrossBuild).value, (scalaBinaryVersion in pluginCrossBuild).value)
sbt.Defaults.sbtPluginExtra("net.virtual-void" % "sbt-dependency-graph" % sbtDependencyGraphVersion(version.value), (pluginCrossBuild / sbtBinaryVersion).value, (pluginCrossBuild / scalaBinaryVersion).value)
}

libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.9" % "test"
Expand Down
4 changes: 2 additions & 2 deletions project.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ name := "sbt-dependency-graph-sugar"

organization := "org.gfccollective"

version in ThisBuild := "0.9.2"
(ThisBuild / version) := "0.9.2"

homepage := Some(url("http://github.com/gilt/sbt-dependency-graph-sugar"))

licenses in GlobalScope += "Apache License 2.0" -> url("https://github.com/gilt/sbt-dependency-graph-sugar/raw/master/LICENSE")
(GlobalScope / licenses) += "Apache License 2.0" -> url("https://github.com/gilt/sbt-dependency-graph-sugar/raw/master/LICENSE")

2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.4.9
sbt.version=1.5.6
2 changes: 1 addition & 1 deletion publish.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publishTo := {
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}

publishArtifact in Test := false
(Test / publishArtifact) := false

pomIncludeRepository := { _ => false }

Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.9.2"
(ThisBuild / version) := "0.9.2"

0 comments on commit 43f6959

Please sign in to comment.