stendhal/build.xml

43 lines
1.1 KiB
XML
Raw Normal View History

2008-10-21 07:17:43 +00:00
<?xml version='1.0'?>
2026-01-13 18:26:34 -08:00
<project name="stendhal" default="help" basedir=".">
2026-01-13 18:26:07 -08:00
<description>
Project:
Name: .......... ${game_name}
Version: ....... ${version}
Root: .......... ${basedir}
Build system:
Ant version: ... ${ant.version.number}
Ant home: ...... ${ant.location}
Java version: .. ${java.version}
Java home: ..... ${java.home}
Execute `ant help` for more information.
</description>
2024-02-01 16:35:13 -08:00
<property file="build.ant-private.properties"/>
<property file="build.ant.properties"/>
<!-- Ant sub-modules -->
<import file="build-private.xml" optional="true"/>
2026-01-13 19:42:45 -08:00
<import file="${ant_modules}/properties.xml"/>
2026-01-13 18:26:07 -08:00
<import file="${ant_modules}/info.xml"/>
<import file="${ant_modules}/system.xml"/>
2024-02-01 16:35:13 -08:00
<import file="${ant_modules}/apps.xml"/>
<import file="${ant_modules}/main.xml"/>
<import file="${ant_modules}/clean.xml"/>
<import file="${ant_modules}/dist.xml"/>
<import file="${ant_modules}/maps.xml"/>
<import file="${ant_modules}/docs.xml"/>
<import file="${ant_modules}/locale.xml"/>
<import file="${ant_modules}/testing.xml"/>
<import file="${ant_modules}/tools.xml"/>
<import file="${ant_modules}/package.xml"/>
2019-05-31 17:05:58 -07:00
2008-10-21 07:17:43 +00:00
</project>