Files
kotlin/compiler/testData/modules.xml/twoModules.xml
Alexander Udalov 13c54a2678 Drop external annotations support in build tools
External annotations will only be considered in the IDE for additional
inspections based on more precise types in Java libraries
2015-10-09 11:51:58 +02:00

18 lines
508 B
XML
Vendored

<modules>
<module name="name" outputDir="out" type="java-production">
<sources path="foo"/>
<sources path="foo1"/>
<sources path="foo2"/>
<classpath path="bar"/>
<classpath path="bar1"/>
<classpath path="bar2"/>
</module>
<module name="name2" outputDir="out2" type="java-production">
<sources path="2foo"/>
<sources path="2foo1"/>
<sources path="2foo2"/>
<classpath path="2bar"/>
<classpath path="2bar1"/>
<classpath path="2bar2"/>
</module>
</modules>