JPS: fixed duplicate meta.js in case of multiple source roots in the same module.

This commit is contained in:
Anton Bannykh
2017-02-02 16:50:01 +03:00
parent 289a7a9cc3
commit f0e3c87b84
8 changed files with 83 additions and 13 deletions
@@ -0,0 +1,3 @@
fun src() {
src2()
}
@@ -0,0 +1,3 @@
fun src2() {
src()
}
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src2" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>