mirror of https://github.com/sbt/sbt.git
Merge pull request #6355 from marcospereira/updates/semanticdb-4.4.10
Update semanticdb to version 4.4.10
This commit is contained in:
commit
5f24664c0d
|
|
@ -19,7 +19,7 @@ ThisBuild / turbo := true
|
|||
ThisBuild / usePipelining := false // !(Global / insideCI).value
|
||||
|
||||
Global / semanticdbEnabled := !(Global / insideCI).value
|
||||
Global / semanticdbVersion := "4.4.8"
|
||||
Global / semanticdbVersion := "4.4.10"
|
||||
val excludeLint = SettingKey[Set[Def.KeyedInitialize[_]]]("excludeLintKeys")
|
||||
Global / excludeLint := (Global / excludeLint).?.value.getOrElse(Set.empty)
|
||||
Global / excludeLint += componentID
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ object SemanticdbPlugin extends AutoPlugin {
|
|||
semanticdbEnabled := SysProp.semanticdb,
|
||||
semanticdbIncludeInJar := false,
|
||||
semanticdbOptions := List(),
|
||||
semanticdbVersion := "4.4.8"
|
||||
semanticdbVersion := "4.4.10"
|
||||
)
|
||||
|
||||
override lazy val projectSettings: Seq[Def.Setting[_]] = Seq(
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
ThisBuild / scalaVersion := "2.12.8"
|
||||
ThisBuild / scalaVersion := "2.12.13"
|
||||
ThisBuild / semanticdbEnabled := true
|
||||
ThisBuild / semanticdbVersion := "4.2.3"
|
||||
ThisBuild / semanticdbVersion := "4.4.10"
|
||||
ThisBuild / semanticdbIncludeInJar := false
|
||||
|
||||
lazy val root = (project in file("."))
|
||||
|
|
@ -8,11 +8,11 @@ lazy val root = (project in file("."))
|
|||
lazy val check = taskKey[Unit]("Checks the configured semanticdbVersion")
|
||||
|
||||
check := {
|
||||
val expected = Some("4.2.3")
|
||||
val actual = allDependencies
|
||||
.value
|
||||
.find(_.name == "semanticdb-scalac")
|
||||
.map(_.revision)
|
||||
|
||||
assert(actual == expected, s"Expected version to be $expected, was $actual")
|
||||
val expected = Some("4.4.10")
|
||||
val actual = allDependencies
|
||||
.value
|
||||
.find(_.name == "semanticdb-scalac")
|
||||
.map(_.revision)
|
||||
|
||||
assert(actual == expected, s"Expected version to be $expected, was $actual")
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue