|
Revision 3120
(checked in by douglm, 2 years ago)
|
Further build changes - more simplification. Remove a number of unused build files. Do all of build jar in the macro. Removed buildjar.xml
|
| Line | |
|---|
| 1 |
<?xml version="1.0"?> |
|---|
| 2 |
|
|---|
| 3 |
<!-- ============= deployutil classes build Targets ============ |
|---|
| 4 |
This is the ant build file for the deployment classes for bedework. |
|---|
| 5 |
Because this builds a number of the tasks we cannot use the full build |
|---|
| 6 |
suite. |
|---|
| 7 |
|
|---|
| 8 |
Authors: Mike Douglass douglm rpi.edu |
|---|
| 9 |
=================================================================== --> |
|---|
| 10 |
|
|---|
| 11 |
<project name="bedework.deployutil" default="build"> |
|---|
| 12 |
<property environment="env"/> |
|---|
| 13 |
<dirname property="project.home" file="${ant.file}"/> |
|---|
| 14 |
|
|---|
| 15 |
<property file="${project.home}/build.properties" /> |
|---|
| 16 |
|
|---|
| 17 |
<!-- Note only one level up --> |
|---|
| 18 |
<property name="bedework.home" |
|---|
| 19 |
location="${project.home}/.." /> |
|---|
| 20 |
|
|---|
| 21 |
<property name="build.dir" location="${bedework.home}/build"/> |
|---|
| 22 |
|
|---|
| 23 |
<import file="${build.dir}/buildTools/deftasks.xml"/> |
|---|
| 24 |
|
|---|
| 25 |
<!-- Override this one --> |
|---|
| 26 |
<property name="lib.dir" location="${org.bedework.default.lib}"/> |
|---|
| 27 |
|
|---|
| 28 |
<projectDefs name="${org.bedework.package.name}" |
|---|
| 29 |
version="${org.bedework.webdav.version}" |
|---|
| 30 |
subproject="true" /> |
|---|
| 31 |
|
|---|
| 32 |
<target name="init"> |
|---|
| 33 |
<projectInit/> |
|---|
| 34 |
</target> |
|---|
| 35 |
|
|---|
| 36 |
<target name="build-source" depends="init" |
|---|
| 37 |
description="Compile bedework deployutil classes"> |
|---|
| 38 |
<build-jar module-base="${project.home}" |
|---|
| 39 |
jar-file="${org.bedework.deployutil.jar}" /> |
|---|
| 40 |
</target> |
|---|
| 41 |
</project> |
|---|