Skip to content

Commit 127881b

Browse files
andreaTPodersky
authored andcommitted
Removed invalid javacOptions in (Compile, doc)
1 parent 635094a commit 127881b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

project/Build.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ object DottyBuild extends Build {
4545
// Do not append Scala versions to the generated artifacts
4646
crossPaths := false,
4747
// Do not depend on the Scala library
48-
autoScalaLibrary := false
48+
autoScalaLibrary := false,
49+
//Remove javac invalid options in Compile doc
50+
javacOptions in (Compile, doc) --= Seq("-Xlint:unchecked", "-Xlint:deprecation")
4951
)
5052

5153
lazy val dotty = project.in(file(".")).

0 commit comments

Comments
 (0)