File tree Expand file tree Collapse file tree 6 files changed +8
-3
lines changed Expand file tree Collapse file tree 6 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 14
14
with :
15
15
extraKey : pr-${GITHUB_HEAD_REF}
16
16
- name : Check/Compile/Test
17
- run : sbt check
17
+ run : sbt versionPolicyCheck check
Original file line number Diff line number Diff line change 14
14
java-version : 11
15
15
- uses : coursier/cache-action@v5
16
16
- name : Check/Compile/Test
17
- run : sbt check
17
+ run : sbt versionCheck check
18
18
- name : Release
19
19
env :
20
20
PGP_SECRET : ${{ secrets.PGP_SECRET }}
Original file line number Diff line number Diff line change
1
+ -J-Xmx4g
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ lazy val root = project
43
43
sentryPureConfig,
44
44
sslConfig
45
45
)
46
+ .disablePlugins(SbtVersionPolicyPlugin )
46
47
.settings(BuildSettings .common)
47
48
.settings(
48
49
name := " scala-server-toolkit" ,
@@ -132,6 +133,7 @@ lazy val doobieHikariPureConfig = project
132
133
133
134
lazy val example = project
134
135
.in(file(" example" ))
136
+ .disablePlugins(SbtVersionPolicyPlugin )
135
137
.dependsOn(
136
138
bundleZioHttp4sBlaze,
137
139
cassandraDatastaxDriver,
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import sbt.Keys._
6
6
import sbt .nio .Keys ._
7
7
import sbt .{Def , _ }
8
8
import sbtunidoc .ScalaUnidocPlugin .autoImport ._
9
+ import sbtversionpolicy .SbtVersionPolicyPlugin .autoImport ._
9
10
import scalafix .sbt .ScalafixPlugin .autoImport ._
10
11
11
12
object BuildSettings {
@@ -15,6 +16,7 @@ object BuildSettings {
15
16
Global / cancelable := true ,
16
17
Global / excludeLintKeys += fork,
17
18
ThisBuild / versionScheme := Some (" early-semver" ),
19
+ ThisBuild / versionPolicyIntention := Compatibility .BinaryCompatible ,
18
20
turbo := true ,
19
21
organization := " com.avast" ,
20
22
organizationName := " Avast" ,
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.5")
5
5
addSbtPlugin(" com.47deg" % " sbt-microsites" % " 1.3.2" )
6
6
addSbtPlugin(" com.eed3si9n" % " sbt-unidoc" % " 0.4.3" )
7
7
addSbtPlugin(" com.thoughtworks.sbt-api-mappings" % " sbt-api-mappings" % " 3.0.0" )
8
- addSbtPlugin(" io.chrisdavenport " % " sbt-mima- version-check " % " 0.1.2 " )
8
+ addSbtPlugin(" ch.epfl.scala " % " sbt-version-policy " % " 1.0.0-RC5 " )
You can’t perform that action at this time.
0 commit comments