Skip to content

Commit

Permalink
propagate javac opts to test modules
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Apr 7, 2018
1 parent 779e453 commit 26865c6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scalalib/src/mill/scalalib/ScalaModule.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ trait ScalaModule extends mill.Module with TaskModule { outer =>
override def repositories = outer.repositories
override def scalacPluginIvyDeps = outer.scalacPluginIvyDeps
override def scalacOptions = outer.scalacOptions
override def javacOptions = outer.javacOptions
override def scalaWorker = outer.scalaWorker
override def moduleDeps = Seq(outer)
}
Expand Down

1 comment on commit 26865c6

@gabro
Copy link
Contributor

@gabro gabro commented on 26865c6 Apr 7, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:O I'm so surprised this works. When I've tried a few tests would fail. Glad it's not the case anymore!

Please sign in to comment.