Merge branch 'idea90' of git.labs.intellij.net:idea/community into idea90
[fedora-idea.git] / samples / vfs / build / build.xml
blobfe6278abe8f775eef03459eef8752768cabd4068
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <project name="deploy" default="jar_plugin" basedir="..">
3   <property name="plugname" value="VfsSample"/>
4   <property name="build.path" value="${project.path}/build_out"/>
6   <target name="jar_plugin">
8     <delete includeEmptyDirs="true" failonerror="false">
9       <fileset dir="${build.path}/com" />
10       <fileset dir="${build.path}/META-INF" />
11     </delete>
13     <mkdir dir="${build.path}"/>
15     <copy todir="${build.path}/META-INF">
16        <fileset dir="${project.path}/src/META-INF"/>
17     </copy>
19     <copy todir="${build.path}/com">
20        <fileset dir="${project.path}/classes/com"/>
21     </copy>
23     <jar jarfile="${build.path}/${plugname}.jar" basedir="${build.path}"
24       excludes="${plugname}.jar"/>
26   </target>
27 </project>