Resource Files are not picked up on Gradle Based projects
When STS creates a .classpath file on a Gradle project, the following entries are created (in the following order),
<classpathentry excluding="**" kind="src" output="build/resources/main" path="src/main/resources"/>
<!-- Additional entries skipped -->
<classpathentry excluding="**" kind="src" output="build/resources/test" path="src/test/resources"/>
Impact:
1) All actual resources (such as XML & .properties files) are excluded from the build and are unavailable for tests
2) Resource files in Test could be overridden by resource files in the main path.
Version of STS: 2.9.1.
Should I open an issue in JIRA?