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
|
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
|
||||||
|
|
|
||||||
|
|
@ -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(
|
||||||
|
|
|
||||||
|
|
@ -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")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue