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 ThisBuild / usePipelining := false // !(Global / insideCI).value
Global / semanticdbEnabled := !(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") val excludeLint = SettingKey[Set[Def.KeyedInitialize[_]]]("excludeLintKeys")
Global / excludeLint := (Global / excludeLint).?.value.getOrElse(Set.empty) Global / excludeLint := (Global / excludeLint).?.value.getOrElse(Set.empty)
Global / excludeLint += componentID Global / excludeLint += componentID

View File

@ -26,7 +26,7 @@ object SemanticdbPlugin extends AutoPlugin {
semanticdbEnabled := SysProp.semanticdb, semanticdbEnabled := SysProp.semanticdb,
semanticdbIncludeInJar := false, semanticdbIncludeInJar := false,
semanticdbOptions := List(), semanticdbOptions := List(),
semanticdbVersion := "4.4.8" semanticdbVersion := "4.4.10"
) )
override lazy val projectSettings: Seq[Def.Setting[_]] = Seq( 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 / semanticdbEnabled := true
ThisBuild / semanticdbVersion := "4.2.3" ThisBuild / semanticdbVersion := "4.4.10"
ThisBuild / semanticdbIncludeInJar := false ThisBuild / semanticdbIncludeInJar := false
lazy val root = (project in file(".")) lazy val root = (project in file("."))
@ -8,7 +8,7 @@ lazy val root = (project in file("."))
lazy val check = taskKey[Unit]("Checks the configured semanticdbVersion") lazy val check = taskKey[Unit]("Checks the configured semanticdbVersion")
check := { check := {
val expected = Some("4.2.3") val expected = Some("4.4.10")
val actual = allDependencies val actual = allDependencies
.value .value
.find(_.name == "semanticdb-scalac") .find(_.name == "semanticdb-scalac")