The AIK should should with ant build scripts.
Logged In: YES user_id=413600
Here is a simple ANT script:
<project name="aik" default="jar"> <property name="src" value="."/> <property name="build" value="build"/> <property name="jar" value="."/> <target name="init"> <mkdir dir="${build}"/> </target> <target name="compile" depends="init"> <javac srcdir="${src}" destdir="${build}"/> </target> <target name="jar" depends="compile"> <mkdir dir="${jar}"/> <jar jarfile="${jar}/aik.jar" basedir="${build}"/> </target> </project>
Logged In: YES user_id=52713
I want to mimic the common structure that I see of:
.../aik-0.9.x bin/ ... src/ ... ant/ ... run.bat/sh build.xml
otherwise the ant script attached looks great.
Log in to post a comment.
Logged In: YES
user_id=413600
Here is a simple ANT script:
<project name="aik" default="jar">
<property name="src" value="."/>
<property name="build" value="build"/>
<property name="jar" value="."/>
<target name="init">
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${build}"/>
</target>
<target name="jar" depends="compile">
<mkdir dir="${jar}"/>
<jar jarfile="${jar}/aik.jar" basedir="${build}"/>
</target>
</project>
Logged In: YES
user_id=52713
I want to mimic the common structure that I see of:
.../aik-0.9.x
bin/ ...
src/ ...
ant/ ...
run.bat/sh
build.xml
otherwise the ant script attached looks great.