Fix KotlinModuleXmlGeneratorTest

modules.xml testData was renamed from idea/testData/modules.xml/
This commit is contained in:
Nikita Bobko
2021-12-20 14:44:17 +01:00
parent 735d46efb4
commit 8d2755db4f
5 changed files with 67 additions and 4 deletions
+26
View File
@@ -0,0 +1,26 @@
<modules>
<!-- Module script for production -->
<module name="name" type="java-production" outputDir="output">
<sources path="s1"/>
<sources path="s2"/>
<!-- Java source roots -->
<!-- Classpath -->
<!-- Output directory, commented out -->
<!--
<classpath path="cp1"/>
-->
<classpath path="cp2"/>
</module>
<!-- Module script for tests -->
<module name="name2" type="java-test" outputDir="output2">
<sources path="s12"/>
<sources path="s22"/>
<!-- Java source roots -->
<!-- Classpath -->
<!-- Output directory, commented out -->
<!--
<classpath path="cp12"/>
-->
<classpath path="cp22"/>
</module>
</modules>