File tree 3 files changed +4
-7
lines changed
3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 1
1
Global / cancelable := true
2
2
publish / skip := true // in root
3
3
4
- ThisBuild / versionScheme := Some (" early-semver" )
5
- ThisBuild / versionPolicyIntention := Compatibility .BinaryAndSourceCompatible
6
-
7
4
lazy val commonSettings : Seq [Setting [_]] =
8
5
Seq (scalaModuleAutomaticModuleName := Some (" scala.collection.parallel" )) ++
9
6
ScalaModulePlugin .scalaModuleSettings ++ Seq (
7
+ versionPolicyIntention := Compatibility .BinaryAndSourceCompatible ,
10
8
Compile / compile / scalacOptions --= (CrossVersion .partialVersion(scalaVersion.value) match {
11
9
case Some ((3 , _)) => Seq (" -Xlint" )
12
10
case _ => Seq ()
@@ -22,7 +20,6 @@ lazy val core = project.in(file("core"))
22
20
.settings(
23
21
name := " scala-parallel-collections" ,
24
22
Compile / doc / autoAPIMappings := true ,
25
- scalaModuleMimaPreviousVersion := Some (" 1.0.3" ),
26
23
)
27
24
28
25
lazy val junit = project.in(file(" junit" ))
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ verPat="[0-9]+\.[0-9]+\.[0-9]+(-[A-Za-z0-9-]+)?"
31
31
tagPat=" ^v$verPat (#.*)?$"
32
32
33
33
if [[ " $TRAVIS_TAG " =~ $tagPat ]]; then
34
+ versionCheckTask=" versionCheck"
34
35
releaseTask=" ci-release"
35
36
if ! isReleaseJob; then
36
37
echo " Not releasing on Java $ADOPTOPENJDK with Scala $TRAVIS_SCALA_VERSION "
@@ -47,4 +48,4 @@ export CI_SNAPSHOT_RELEASE="${projectPrefix}publish"
47
48
# for now, until we're confident in the new release scripts, just close the staging repo.
48
49
export CI_SONATYPE_RELEASE=" ; sonatypePrepare; sonatypeBundleUpload; sonatypeClose"
49
50
50
- sbt clean ${projectPrefix} test versionPolicyCheck core/headerCheck ${projectPrefix} publishLocal $releaseTask
51
+ sbt clean ${projectPrefix} test core/headerCheck ${projectPrefix} publishLocal $versionCheckTask $releaseTask
Original file line number Diff line number Diff line change 1
- addSbtPlugin(" org.scala-lang.modules" % " sbt-scala-module" % " 2.3.1" )
2
- addSbtPlugin(" ch.epfl.scala" % " sbt-version-policy" % " 1.2.1" )
1
+ addSbtPlugin(" org.scala-lang.modules" % " sbt-scala-module" % " 2.4.0" )
You can’t perform that action at this time.
0 commit comments