| <?xml version="1.0"?> |
| <!-- ====================================================================== |
| ANT script to build org.eclipse.stem.geography project |
| and the initial set of STEM scenarios. |
| This must be run after installing the STEM workspace and after changes |
| to code generated by EMF models. |
| |
| ====================================================================== --> |
| <project name="STEM Internal Data" default="update_all"> |
| <description> |
| Run all of the child ant files. |
| </description> |
| |
| <!-- P r o j e c t S p e c i f i c a t i o n s --> |
| |
| <!-- The name of the project --> |
| <property name="project.name" value="stem" /> |
| |
| <!-- The prefix for fully qualified names --> |
| <property name="ID_ROOT" value="org.eclipse.stem" /> |
| |
| <!-- Are we running headless? --> |
| <condition property="runningHeadless" > |
| <isset property="buildDirectory" /> |
| </condition> |
| |
| <!-- The buildDirectory property is set in a headless build --> |
| <condition property="pluginRootDirectory" value="${buildDirectory}/plugins" else="../.."> |
| <isset property="runningHeadless" /> |
| </condition> |
| |
| <target name="update_all" description="Run all of the child and files"> |
| <ant inheritAll="false" dir="${pluginRootDirectory}/org.eclipse.stem.data/geography/${ID_ROOT}.internal.data.geography" antfile="update.xml"/> |
| <ant inheritAll="false" dir="${pluginRootDirectory}/org.eclipse.stem.data/population/${ID_ROOT}.internal.data.geography.population.human" antfile="update.xml"/> |
| <!--<ant dir="${pluginRootDirectory}/${ID_ROOT}.internal.data.geography.earthscience" antfile="update.xml"/>--> |
| <ant inheritAll="false" dir="${pluginRootDirectory}/org.eclipse.stem.data/geography/${ID_ROOT}.internal.data.geography.models" antfile="update.xml"/> |
| <ant inheritAll="false" dir="${pluginRootDirectory}/org.eclipse.stem.data/geography/${ID_ROOT}.internal.data.geography.infrastructure.transportation" antfile="update.xml"/> |
| <ant inheritAll="false" dir="${pluginRootDirectory}/org.eclipse.stem.data/population/${ID_ROOT}.internal.data.geography.population.human.models" antfile="update.xml"/> |
| <!--<ant dir="${pluginRootDirectory}/${ID_ROOT}.internal.data.geography.earthscience.models" antfile="update.xml"/>--> |
| <ant inheritAll="false" dir="${pluginRootDirectory}/org.eclipse.stem/models/epidemiology/${ID_ROOT}.internal.diseasemodels.models" antfile="update.xml"/> |
| <ant inheritAll="false" dir="${pluginRootDirectory}/org.eclipse.stem/models/epidemiology/${ID_ROOT}.internal.diseasemodels.scenarios" antfile="update.xml"/> |
| </target> |
| </project> |