view build.xml @ 53:691864097eb1

* src/java/de/intevation/mxd/writer/MapScriptWriter.java: Added the (currently) hard-coded template-path to the mapObj-constructor; removed some TODO-settings.
author Stephan Holl <stephan.holl@intevation.de>
date Wed, 11 May 2011 10:10:18 +0200
parents 7873682a1a11
children f0c02ff120d6
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="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">
    <mkdir dir="${dist.dir}" />
    <jar jarfile="${dist.dir}/${sample.dir}.jar" compress="true" basedir="${class.dir}">
      <manifest>
        <attribute name="Main-Class" value="${main.class}"/>
      </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)