mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +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(
|
ThisBuild / javacOptions ++= Seq(
|
||||||
"-encoding", // Provide explicit encoding (the next line)
|
"-encoding", // Provide explicit encoding (the next line)
|
||||||
"UTF-8", // Specify character encoding used by Java source files
|
"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
|
"-deprecation", // Shows a description of each use or override of a deprecated member or class
|
||||||
"-g", // Include debugging information
|
"-g", // Include debugging information
|
||||||
"-Xlint:unchecked" // Enable additional warnings
|
"-Xlint:unchecked", // Enable additional warnings
|
||||||
|
"-proc:full" // Annotation processing is enabled
|
||||||
)
|
)
|
||||||
|
|
||||||
ThisBuild / scalacOptions ++= Seq(
|
ThisBuild / scalacOptions ++= Seq(
|
||||||
@ -1035,6 +1036,7 @@ lazy val `json-rpc-server` = project
|
|||||||
lazy val `json-rpc-server-test` = project
|
lazy val `json-rpc-server-test` = project
|
||||||
.in(file("lib/scala/json-rpc-server-test"))
|
.in(file("lib/scala/json-rpc-server-test"))
|
||||||
.settings(
|
.settings(
|
||||||
|
frgaalJavaCompilerSetting,
|
||||||
libraryDependencies ++= akka,
|
libraryDependencies ++= akka,
|
||||||
libraryDependencies ++= circe,
|
libraryDependencies ++= circe,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
|
Loading…
Reference in New Issue
Block a user