| 1 |
<!-- This is the build.xml for the bedework uportal support classes component. |
|---|
| 2 |
|
|---|
| 3 |
Authors: Mike Douglass douglm@rpi.edu |
|---|
| 4 |
--> |
|---|
| 5 |
|
|---|
| 6 |
<project name="uportal.compile" default="build" > |
|---|
| 7 |
<property name="base.name" value="uportal"/> |
|---|
| 8 |
|
|---|
| 9 |
<target name="init"> |
|---|
| 10 |
<dirname property="this.dir" file="${ant.file}"/> |
|---|
| 11 |
<property name="source.home" location="${this.dir}/src"/> |
|---|
| 12 |
</target> |
|---|
| 13 |
|
|---|
| 14 |
<target name="build" depends="init" |
|---|
| 15 |
description="Compile bedework uportal support Java sources"> |
|---|
| 16 |
<!-- ==================== Sources and classes ====================== --> |
|---|
| 17 |
|
|---|
| 18 |
<fileset id="base.java.sources" dir="${source.home}" > |
|---|
| 19 |
<include name="ca/mun/**/*.java"/> |
|---|
| 20 |
</fileset> |
|---|
| 21 |
|
|---|
| 22 |
<patternset id="base.class.patternset"> |
|---|
| 23 |
<include name="ca/mun/**/*.class"/> |
|---|
| 24 |
</patternset> |
|---|
| 25 |
|
|---|
| 26 |
<!-- ==================== Compilation Classpath ==================== --> |
|---|
| 27 |
|
|---|
| 28 |
<path id="compile.classpath"> |
|---|
| 29 |
<pathelement location="${servlet.jar}"/> |
|---|
| 30 |
<pathelement location="${servlet.jsp.jar}"/> |
|---|
| 31 |
<pathelement location="${portlet.jar}"/> |
|---|
| 32 |
<pathelement location="${struts.jar}"/> |
|---|
| 33 |
<pathelement location="${pluto.jar}"/> |
|---|
| 34 |
<pathelement location="${portals-bridges-common.jar}"/> |
|---|
| 35 |
<pathelement location="${portals-bridges-struts.jar}"/> |
|---|
| 36 |
</path> |
|---|
| 37 |
|
|---|
| 38 |
<!-- ==================== Build Target ============================= --> |
|---|
| 39 |
|
|---|
| 40 |
<property name="build.jar.file" location="${org.bedework.uportal.jar}" /> |
|---|
| 41 |
|
|---|
| 42 |
<ant antfile="${buildjar}" inheritRefs="true" target="build" /> |
|---|
| 43 |
</target> |
|---|
| 44 |
</project> |
|---|