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
@ -182,7 +182,8 @@ ThisBuild / javacOptions ++= Seq(
|
||||
"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
|
||||
"-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