fa2116040e
Java sources should appear before classpath dependencies because they should have higher priority if the same symbol is located in the module source and in the classpath. This is so because by default module source has the highest priority in IDEA except the JDK. Ideally this will be handled later by full support of modules in the compiler
16 lines
454 B
XML
16 lines
454 B
XML
<modules>
|
|
<!-- Module script for production -->
|
|
<module name="name" outputDir="output">
|
|
<sources path="s1"/>
|
|
<sources path="s2"/>
|
|
<!-- Java source roots -->
|
|
<classpath path="java"/>
|
|
<!-- External annotations -->
|
|
<externalAnnotations path="a1/f1"/>
|
|
<externalAnnotations path="a2"/>
|
|
<!-- s1 -->
|
|
<classpath path="cp1"/>
|
|
<classpath path="cp2"/>
|
|
</module>
|
|
</modules>
|