Files
kotlin-fork/plugin_post_build.xml
T

12 lines
460 B
XML

<project name="Kotlin Plugin Post-build Step">
<property name="artifact.output.path" value="${basedir}/out/artifacts/KotlinPlugin"/>
<property name="build.number" value="snapshot"/>
<target name="renamePluginZip">
<!-- Rename the zip to kotlin-plugin-${build}.zip-->
<move file="${artifact.output.path}/KotlinPlugin.zip" tofile="${artifact.output.path}/kotlin-plugin-${build.number}.zip">
</move>
</target>
</project>