We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f7c56d commit 166b02dCopy full SHA for 166b02d
build.sbt
@@ -74,6 +74,8 @@ scalacOptions ++= {
74
// and we use it.
75
//scalacOptions in (Compile, compile) += "-Xfatal-warnings"
76
77
+compileOrder := CompileOrder.JavaThenScala
78
+
79
Compile / unmanagedSourceDirectories ++= {
80
if (scalaReleaseVersion.value > 2) {
81
Seq(
@@ -102,7 +104,7 @@ Test / unmanagedSourceDirectories ++= {
102
104
}
103
105
106
Test / unmanagedSourceDirectories ++= {
- if (addJava17Tests && scalaReleaseVersion.value == 2 && scalaMajorVersion.value >= 13) {
107
+ if (addJava17Tests) {
108
109
(LocalRootProject / baseDirectory).value / "src" / "test" / "java-17",
110
(LocalRootProject / baseDirectory).value / "src" / "test" / "scala-jdk-17",
0 commit comments