diff options
| author | Kevin Laeufer | 2020-07-28 08:48:35 -0700 |
|---|---|---|
| committer | Kevin Laeufer | 2020-07-29 15:26:30 -0700 |
| commit | 6b71172e94e9fc786d33a34b75395c4f08817b6a (patch) | |
| tree | 03e97c9378c412c5a9a42a57ca2543ad3fbc11cb /build.sbt | |
| parent | c02c9b7f33d67d8a65040c028395e881668294f6 (diff) | |
[2.13] build.sbt: add scala 2.13 and remove semanticdb for now
semanticdb seemed to be missing a 2.13 package
Diffstat (limited to 'build.sbt')
| -rw-r--r-- | build.sbt | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -34,16 +34,13 @@ lazy val commonSettings = Seq( name := "firrtl", version := "1.4-SNAPSHOT", scalaVersion := "2.12.11", - crossScalaVersions := Seq("2.12.11", "2.11.12"), - addCompilerPlugin(scalafixSemanticdb), + crossScalaVersions := Seq("2.13.2", "2.12.11", "2.11.12"), scalacOptions := scalacOptionsVersion(scalaVersion.value) ++ Seq( "-deprecation", "-unchecked", "-language:reflectiveCalls", "-language:existentials", "-language:implicitConversions", - "-Yrangepos", // required by SemanticDB compiler plugin - "-Ywarn-unused-import" // required by `RemoveUnused` rule ), javacOptions ++= javacOptionsVersion(scalaVersion.value), libraryDependencies ++= Seq( |
