tinylaf-1_4_0_src.tinycp.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinylaf Show documentation
Show all versions of tinylaf Show documentation
A (mostly painted) Look and Feel for Java 1.4 and higher.
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <project name="TinyLaF" default="cleanup" basedir="."> <description> build executable tinycp.jar from tinylaf sources and resources </description> <!-- set global properties for this build --> <property name="src" location="src"/> <property name="build" location="build"/> <target name="init"> <!-- Create the build directory structure used by compile --> <mkdir dir="${build}"/> </target> <target name="compile" depends="init" description="compile the source"> <!-- Compile the java code from ${src} into ${build} --> <javac srcdir="${src}" destdir="${build}" source="1.4" debug="true" debuglevel="lines,vars,source" /> </target> <target name="copy_resources" depends="compile" description="copy resources"> <!-- Copy icons, html, themes and help directories from src to build directory --> <copy todir="${build}/de/muntjak/tinylookandfeel/cp_icons"> <fileset dir="${src}/de/muntjak/tinylookandfeel/cp_icons"/> </copy> <copy todir="${build}/de/muntjak/tinylookandfeel/icons"> <fileset dir="${src}/de/muntjak/tinylookandfeel/icons"/> </copy> <copy todir="${build}/de/muntjak/tinylookandfeel/html"> <fileset dir="${src}/de/muntjak/tinylookandfeel/html"/> </copy> <copy todir="${build}/themes"> <fileset dir="themes"/> </copy> <copy todir="${build}/help"> <fileset dir="help"/> </copy> <copy file="${src}/de/muntjak/tinylookandfeel/LinuxFontMappings.properties" todir="${build}/de/muntjak/tinylookandfeel" /> <copy file="${src}/de/muntjak/tinylookandfeel/MacFontMappings.properties" todir="${build}/de/muntjak/tinylookandfeel" /> </target> <target name="dist" depends="copy_resources" description="generate the distribution"> <!-- Put everything in ${build} into the tinycp.jar file --> <jar jarfile="tinycp.jar" basedir="${build}" manifest="manifest.txt"/> </target> <target name="cleanup" depends="dist" description="clean up" > <!-- Delete the ${build} directory trees --> <delete dir="${build}"/> </target> </project>