Skip to content

Commit

Permalink
Fix jvm test resource directory resolving
Browse files Browse the repository at this point in the history
¿¿ Who wrote it¿¿¿
  • Loading branch information
Karlatemp committed Aug 31, 2022
1 parent 969c77f commit df67898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectConfigure.kt
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ fun Project.configureFlattenSourceSets() {
java.setSrcDirs(listOf(projectDir.resolve("src")))
}
findByName("test")?.apply {
resources.setSrcDirs(listOf(projectDir.resolve("resources")))
resources.setSrcDirs(listOf(projectDir.resolve("testResources")))
java.setSrcDirs(listOf(projectDir.resolve("test")))
}
}
Expand Down

0 comments on commit df67898

Please sign in to comment.