mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
The change only affects JPS on TeamCity (in Intellij IC system property is always set explicitly; the same holds for Gradle, Maven). Previous changes have effectively enabled the new IC (which is now default) for TC JPS builds, which is undesirable as more RAM is used.
27 lines
786 B
XML
Vendored
27 lines
786 B
XML
Vendored
<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>
|