mirror of https://github.com/sbt/sbt.git
fix mixed compilation order
This commit is contained in:
parent
aae8b084ca
commit
7ad8e9778f
|
|
@ -75,7 +75,7 @@ class AggressiveCompile(cacheDirectory: File)
|
|||
javac(javaSrcs, absClasspath, outputDirectory, options.javacOptions)
|
||||
}
|
||||
}
|
||||
if(order == ScalaThenJava) { compileScala(); compileJava() } else { compileJava(); compileScala() }
|
||||
if(order == JavaThenScala) { compileJava(); compileScala() } else { compileScala(); compileJava() }
|
||||
}
|
||||
|
||||
val sourcesSet = sources.toSet
|
||||
|
|
|
|||
Loading…
Reference in New Issue