Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrf committed Nov 30, 2023
1 parent 81f17e5 commit be1559f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 64 deletions.
7 changes: 5 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import ReleaseTransformations.*
import sbtversionpolicy.SbtVersionPolicyPlugin.aggregatedAssessedCompatibilityWithLatestRelease
import sbtversionpolicy.withsbtrelease.ReleaseVersion

ThisBuild / scalaVersion := "2.13.12"
Expand Down Expand Up @@ -56,7 +55,11 @@ lazy val `etag-caching-root` = (project in file("."))
).settings(baseSettings).settings(
publish / skip := true,
releaseCrossBuild := true, // true if you cross-build the project for multiple Scala versions
releaseVersion := ReleaseVersion.fromAggregatedAssessedCompatibility.value,
releaseVersion := {
ReleaseVersion.fromAggregatedAssessedCompatibilityWithLatestRelease(
qualifier = sys.env.getOrElse("RELEASE_VERSION_QUALIFIER", "")
).value
},
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
Expand Down
61 changes: 0 additions & 61 deletions project/Versioning.scala

This file was deleted.

2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.21")

addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "2.1.3+16-9c3dded3+20231129-1538-SNAPSHOT")
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "2.1.3+18-6e335734-SNAPSHOT")

0 comments on commit be1559f

Please sign in to comment.