Merge pull request #6355 from marcospereira/updates/semanticdb-4.4.10

Update semanticdb to version 4.4.10
This commit is contained in:
eugene yokota 2021-03-04 20:17:06 -05:00 committed by GitHub
commit 5f24664c0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 11 deletions

View File

@ -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

View File

@ -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(

View File

@ -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")
}