mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 11:52:59 +03:00
Fix annotation processing warnings (#8319)
This commit is contained in:
parent
ba19813511
commit
b4405f6b06
12
build.sbt
12
build.sbt
@ -178,11 +178,12 @@ Global / excludeLintKeys += logManager
|
||||
// ============================================================================
|
||||
|
||||
ThisBuild / javacOptions ++= Seq(
|
||||
"-encoding", // Provide explicit encoding (the next line)
|
||||
"UTF-8", // Specify character encoding used by Java source files
|
||||
"-deprecation", // Shows a description of each use or override of a deprecated member or class
|
||||
"-g", // Include debugging information
|
||||
"-Xlint:unchecked" // Enable additional warnings
|
||||
"-encoding", // Provide explicit encoding (the next line)
|
||||
"UTF-8", // Specify character encoding used by Java source files
|
||||
"-deprecation", // Shows a description of each use or override of a deprecated member or class
|
||||
"-g", // Include debugging information
|
||||
"-Xlint:unchecked", // Enable additional warnings
|
||||
"-proc:full" // Annotation processing is enabled
|
||||
)
|
||||
|
||||
ThisBuild / scalacOptions ++= Seq(
|
||||
@ -1035,6 +1036,7 @@ lazy val `json-rpc-server` = project
|
||||
lazy val `json-rpc-server-test` = project
|
||||
.in(file("lib/scala/json-rpc-server-test"))
|
||||
.settings(
|
||||
frgaalJavaCompilerSetting,
|
||||
libraryDependencies ++= akka,
|
||||
libraryDependencies ++= circe,
|
||||
libraryDependencies ++= Seq(
|
||||
|
Loading…
Reference in New Issue
Block a user