Skip to content

Commit f9408f6

Browse files
committed
Fixed placement of resource files in new project structure
1 parent 0c090ed commit f9408f6

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,9 @@ def internal = sourceless + ['benchmarks', 'knit', 'js-stub', 'binary-compatibil
102102
// Reconfigure source sets to avoid long "src/main/kotlin/fqn"
103103
configure(subprojects.findAll { !it.name.contains(sourceless) && it.name != "benchmarks" }) {
104104
sourceSets {
105-
main.kotlin.srcDirs = ["src/"]
106-
test.kotlin.srcDirs = ["test/"]
105+
main.kotlin.srcDirs = ['src']
106+
test.kotlin.srcDirs = ['test']
107+
main.resources.srcDirs = ['resources']
107108
}
108109
}
109110

0 commit comments

Comments
 (0)