Skip to content

Commit

Permalink
Handle Scala 2.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
olafurpg committed Aug 27, 2021
1 parent ddb6d19 commit b226a3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,11 @@ class GradleBuildTool(index: IndexCommand) extends BuildTool("Gradle", index) {
def semanticdbScalacGroovySyntax(): String =
BuildInfo
.semanticdbScalacVersions
.removed(
"2.12.3"
) // Not supported because the last semanticdb-scalac_2.12.3 release doesn't support the option -P:semanticdb:targetroot:PATH.
.map { case (key, value) =>
s"'$key':'$value'"
}
.mkString("[", ", ", "]")
}.mkString("[", ", ", "]")

}
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;
import java.lang.instrument.ClassFileTransformer;
import java.lang.instrument.Instrumentation;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.security.ProtectionDomain;
import java.util.ArrayList;
import java.util.List;
import java.util.NoSuchElementException;
Expand Down

0 comments on commit b226a3e

Please sign in to comment.