view build.xml @ 251:6b80e46b8f38

Added picture symbol support to the converter.
author raimund renkert <raimund.renkert@intevation.de>
date Fri, 12 Aug 2011 16:08:57 +0200
parents 8ced5ff9113d
children 4dc2b9aa3c57
line wrap: on
line source
<?xml version="1.0"?>
<!DOCTYPE project[
  <!ENTITY properties SYSTEM "properties.xml">
]>
<!-- :mode=ant -->

<project name="MXD-Konverter" default="all" basedir=".">
  <!-- import external XML fragments -->
  &properties;
  <!-- import sample properties -->
  <!-- TODO: edit sample.properties file before importing -->
  <property file="sample.properties"/>
  <path id="compile.classpath">
    <pathelement location="${arcobjects.jar}"/>
    <fileset dir="${libs.dir}">
      <include name="**/*.jar"/>
    </fileset>
  </path>
  <path id="run.classpath">
    <path refid="compile.classpath"/>
    <pathelement location="${class.dir}"/>
    <pathelement location="${src.dir}"/>
  </path>

  <!-- ========================================= -->
  <!-- private targets -->
  <!-- ========================================= -->
  <target name="revision">
    <property name="current" value="parent"/>
    <exec executable="hg" outputproperty="hash">
	    <arg line="${current} --template '{node|short}'"/>
    </exec>
  </target>

  <target name="init">
    <!-- create the time stamp -->
    <tstamp/>
    <!-- create the build directory structure used by compile -->
    <mkdir dir="${build.dir}"/>
    <mkdir dir="${class.dir}"/>
  </target>

  <target name="validate-runtime" depends="init">
    <condition property="runtimeAvailable">
      <isset property="runtime.home"/>
    </condition>
    <fail message="No runtime installed. You need to install ArcGIS Engine, Desktop or Server to run this sample." unless="runtimeAvailable"/>
  </target>

  <target name="compile" depends="validate-runtime">
  <!-- javac resolver needed to run inside of Websphere Studio -->
    <available classname="org.eclipse.core.launcher.Main" property="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter" classpath="${java.class.path}" />
    <!-- compile the java code from ${src.dir} into ${class.dir} -->
    <javac srcdir="${src.dir}" destdir="${class.dir}" debug="on">
      <classpath refid="compile.classpath"/>
    </javac>
    <copy todir="${class.dir}">
      <fileset dir="${src.dir}" includes="**/icons/*" />
    </copy>
  </target>

  <target name="jar" depends="compile,revision">
    <mkdir dir="${dist.dir}" />
    <jar jarfile="${dist.dir}/mxd2map-${hash}.jar" compress="true" basedir="${class.dir}">
      <manifest>
        <attribute name="Main-Class" value="de.intevation.mxd.Converter"/>
	<attribute name="Class-Path" value="lib/log4j-1.2.16.jar lib/mapscript.jar lib/arcobjects.jar lib/jargs.jar lib/commons-codec-1.5.jar"/>
      </manifest>
    </jar>
  </target>

  <target name="jar-norevision" depends="compile">
    <mkdir dir="${dist.dir}" />
    <jar jarfile="${dist.dir}/mxd2map.jar" compress="true" basedir="${class.dir}">
      <manifest>
        <attribute name="Main-Class" value="de.intevation.mxd.Converter"/>
	<attribute name="Class-Path" value="lib/log4j-1.2.16.jar lib/mapscript.jar lib/jargs.jar lib/commons-codec-1.5.jar"/>
      </manifest>
    </jar>
  </target>

  <target name="usage">
    <echo message="Execute 'ant -projecthelp' for the build file help"/>
    <echo message="Execute 'ant -help' for Ant help"/>
  </target>

  <target name="execute" depends="compile">
    <java classname="de.intevation.mxd.Converter" failonerror="true" fork="true">
      <jvmarg value="-Xss2m"/>
      <classpath refid="run.classpath"/>
      <sysproperty key="mxd.file" value="${MXDFILE}"/>
    </java>
  </target>

  <!-- ========================================= -->
  <!-- public targets -->
  <!-- ========================================= -->

  <target name="all" depends="compile" description="build everything">
    <echo message="application built"/>
  </target>

  <target name="clean" description="clean all build products">
    <!-- delete the ${build} directory trees -->
    <delete dir="${build.dir}"/>
    <echo message="build directory gone!"/>
  </target>

  <target name="help" depends="usage" description="usage" />
  <target name="dist" depends="jar" description="create distributable products" />
  <target name="run-sample" depends="execute" description="execute the sample with args set in sample.properties"/>
</project>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)