Documentation for XML format for kotlinc -Xbuild-file argument

Is there any documentation for the XML format for the kotlinc -Xbuild-file argument?

Its content looks something like:

<modules>
    <module name="module-name" type="java-production" outputDir="/Users/user/code/project/build/classes/kotlin/main">
        <sources path="/Users/user/code/project/src/main/kotlin/package/Class.kt"/>
        <javaSourceRoots path="/Users/user/code/project/src/main/java"/>
        <classpath path="/Users/user/code/project/libs/lib.jar"/>
    </module>
</modules>

Not at the moment, see this comment. Please feel free to create an issue to document it.

1 Like