|
Revision 957
(checked in by douglm, 7 years ago)
|
Add missing files
|
| 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 |
|
|---|
| 6 |
Authors: Mike Douglass douglm@rpi.edu |
|---|
| 7 |
=================================================================== --> |
|---|
| 8 |
|
|---|
| 9 |
<project name="bedework.deployutil" default="build"> |
|---|
| 10 |
<property name="base.name" value="deployutil"/> |
|---|
| 11 |
|
|---|
| 12 |
<target name="init"> |
|---|
| 13 |
<dirname property="this.dir" file="${ant.file}"/> |
|---|
| 14 |
<property name="source.home" location="${this.dir}/src"/> |
|---|
| 15 |
</target> |
|---|
| 16 |
|
|---|
| 17 |
<target name="build" depends="init" |
|---|
| 18 |
description="Compile bedework logging classes"> |
|---|
| 19 |
<!-- ==================== Sources and classes ====================== --> |
|---|
| 20 |
|
|---|
| 21 |
<fileset id="base.java.sources" dir="${source.home}" > |
|---|
| 22 |
<include name="org/bedework/*/*.java"/> |
|---|
| 23 |
</fileset> |
|---|
| 24 |
|
|---|
| 25 |
<patternset id="base.class.patternset"> |
|---|
| 26 |
<include name="org/bedework/*/*.class"/> |
|---|
| 27 |
</patternset> |
|---|
| 28 |
|
|---|
| 29 |
<ant antfile="${buildjar}" inheritRefs="true" target="build" /> |
|---|
| 30 |
</target> |
|---|
| 31 |
</project> |
|---|