Skip to content
Snippets Groups Projects
Commit 5476a8d8 authored by Brian Carrier's avatar Brian Carrier
Browse files

Change build dependency order

parent 586c1458
Branches
No related tags found
No related merge requests found
...@@ -74,7 +74,6 @@ ...@@ -74,7 +74,6 @@
</fileset> </fileset>
<pathelement path="${build}"/> <pathelement path="${build}"/>
</path> </path>
<echo message="hey"/>
</target> </target>
<target name="set-library-path-offline" description="set the library path when the user is offline" if="offline"> <target name="set-library-path-offline" description="set the library path when the user is offline" if="offline">
...@@ -126,7 +125,7 @@ ...@@ -126,7 +125,7 @@
</javac> </javac>
</target> </target>
<target name="compile" depends="init, retrieve-deps" description="compile the source"> <target name="compile" depends="init, set-library-path, retrieve-deps" description="compile the source">
<!-- Compile the java code from ${src} into ${build} --> <!-- Compile the java code from ${src} into ${build} -->
<javac debug="on" srcdir="${src}" destdir="${build}" classpathref="libraries" includeantruntime="false"> <javac debug="on" srcdir="${src}" destdir="${build}" classpathref="libraries" includeantruntime="false">
<compilerarg value="-Xlint"/> <compilerarg value="-Xlint"/>
...@@ -142,12 +141,12 @@ ...@@ -142,12 +141,12 @@
</javac> </javac>
</target> </target>
<target name="dist-SQLite" depends="check-build, init-ivy,set-library-path, compile, copyLibs-SQLite" unless="up-to-date" description="generate the distribution"> <target name="dist-SQLite" depends="check-build, init-ivy, compile, copyLibs-SQLite" unless="up-to-date" description="generate the distribution">
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file --> <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
<jar jarfile="${dist}/sleuthkit-${VERSION}.jar" basedir="${build}"/> <jar jarfile="${dist}/sleuthkit-${VERSION}.jar" basedir="${build}"/>
</target> </target>
<target name="dist-PostgreSQL" depends="check-build, init-ivy,set-library-path, compile, copyLibs-PostgreSQL" unless="up-to-date" description="generate the PostgreSQL distribution"> <target name="dist-PostgreSQL" depends="check-build, init-ivy, compile, copyLibs-PostgreSQL" unless="up-to-date" description="generate the PostgreSQL distribution">
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file --> <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
<jar jarfile="${dist}/sleuthkit-postgresql-${VERSION}.jar" basedir="${build}"/> <jar jarfile="${dist}/sleuthkit-postgresql-${VERSION}.jar" basedir="${build}"/>
</target> </target>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment