Skip to content

Commit

Permalink
Move semanticdb settings to common settings
Browse files Browse the repository at this point in the history
  • Loading branch information
kciesielski committed Apr 24, 2024
1 parent c98f559 commit 2d6d362
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@ val commonSettings = commonSmlBuildSettings ++ ossPublishSettings ++ Seq(
organization := "com.softwaremill.magnolia1_2",
description := "Fast, easy and transparent typeclass derivation for Scala 2",
updateDocs := UpdateVersionInDocs(sLog.value, organization.value, version.value, List(file("readme.md"))),
ideSkipProject := (scalaVersion.value == scala2_12) // only import 2.13 projects
ideSkipProject := (scalaVersion.value == scala2_12), // only import 2.13 projects
semanticdbEnabled := true,
semanticdbVersion := "4.9.3"
)

ThisBuild / semanticdbEnabled := true
ThisBuild / semanticdbVersion := "4.9.3"

lazy val root =
project
.in(file("."))
Expand Down

0 comments on commit 2d6d362

Please sign in to comment.