Guest User

Untitled

a guest
Jun 25th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.65 KB | None | 0 0
  1. <project name="Main project" basedir=".">
  2.     <description>
  3.         Project built
  4.     </description>
  5.     <target name="clean">
  6.             <delete dir="build"/>
  7.         </target>
  8.     <target name="copyLibFiles">
  9.         <mkdir dir="build/lib"/>
  10.         <copy todir="lib">
  11.         <fileset dir="build/lib/"/>
  12.     </copy>
  13.     </target>
  14.     <target name="compile">
  15.             <mkdir dir="build/classes"/>
  16.             <javac srcdir="src" destdir="build/classes"/>
  17.         </target>
  18.     <target name="jar">
  19.         <jar destfile="build/jar/CMISBuild.jar" basedir="build/classes">
  20.             <manifest>
  21.                 <attribute name="Main-Class" value="com.jule.swt.Main"/>
  22.             </manifest>
  23.         </jar>
  24.     </target>
  25. </project>
Add Comment
Please, Sign In to add comment