Skip to content
Snippets Groups Projects
Commit fb037d64 authored by felmer's avatar felmer
Browse files

SP-612, SWE-22: Add sourceSets main.resources and test.resources

SVN: 29857
parent cbe26df5
No related branches found
No related tags found
No related merge requests found
......@@ -14,11 +14,17 @@ sourceSets {
java {
srcDirs = ['source/java']
}
resources {
srcDirs = ['source/java']
}
}
test {
java {
srcDirs = ['sourceTest/java']
}
resources {
srcDirs = ['sourceTest/java']
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment