Artifacts folder cleanup

This commit is contained in:
Andrey Breslav
2012-01-30 20:01:34 +04:00
parent 5a107f58ec
commit 199762fd34
3 changed files with 20 additions and 2 deletions
Generated
+8
View File
@@ -58,6 +58,14 @@
<maximumStackSize value="2" />
<properties />
</buildFile>
<buildFile url="file://$PROJECT_DIR$/plugin_pre_build.xml">
<additionalClassPath />
<antReference projectDefault="true" />
<customJdkName value="" />
<maximumHeapSize value="128" />
<maximumStackSize value="2" />
<properties />
</buildFile>
</component>
</project>
+2 -2
View File
@@ -8,9 +8,9 @@
</options>
</properties>
<properties id="ant-preprocessing">
<options>
<options enabled="true">
<file>file://$PROJECT_DIR$/plugin_pre_build.xml</file>
<target>writeVersionToPluginXml</target>
<target>cleanup</target>
</options>
</properties>
<root id="archive" name="KotlinPlugin.zip">
+10
View File
@@ -0,0 +1,10 @@
<project name="Kotlin Plugin Pre-build Step">
<property name="artifact.output.path" value="${basedir}/out/artifacts/KotlinPlugin"/>
<target name="cleanup">
<delete verbose="true">
<fileset dir="${artifact.output.path}" includes="*"/>
</delete>
</target>
</project>