Skip to content

Commit

Permalink
add java sources foders
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Villa committed Dec 22, 2023
1 parent 8d27205 commit 52ade2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/scala/sbt/internal/ProjectMatrix.scala
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,8 @@ object ProjectMatrix {
private def makeSources(dirSuffix: String, svDirSuffix: String): Setting[_] = {
unmanagedSourceDirectories ++= Seq(
scalaSource.value.getParentFile / s"scala${dirSuffix}",
scalaSource.value.getParentFile / s"scala$svDirSuffix"
scalaSource.value.getParentFile / s"scala$svDirSuffix",
javaSource.value.getParentFile / s"java${dirSuffix}"
)
}

Expand Down

0 comments on commit 52ade2e

Please sign in to comment.