1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-02 09:15:56 +00:00
Files
autopsy/ImageGallery/build.xml
2018-05-18 13:36:02 -04:00

26 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
<!-- for some information on what you could do (e.g. targets to override). -->
<!-- If you delete this file and reopen the project it will be recreated. -->
<project name="org.sleuthkit.autopsy.imagegallery" default="netbeans" basedir=".">
<description>Builds, tests, and runs the project org.sleuthkit.autopsy.imagegallery.</description>
<import file="nbproject/build-impl.xml"/>
<property name="thirdparty.dir" value="${basedir}/../thirdparty" />
<property name="ext.dir" value="release/modules/ext" />
<target name="clean" depends="projectized-common.clean">
<!--Override clean to delete jars, etc downloaded with Ivy,
or copied in from thirdparty folder. This way we don't end up with
out-of-date/unneeded stuff in the installer-->
<delete dir="${ext.dir}"/>
</target>
<target name="get-thirdparty-jars" description="get third-party jar dependencies">
<mkdir dir="${ext.dir}"/>
<copy file="${thirdparty.dir}/sqlite-jdbc/sqlite-jdbc-3.7.8-SNAPSHOT.jar" todir="${ext.dir}" />
</target>
<target name="init" depends="get-thirdparty-jars,harness.init" />
</project>