root/trunk/calendar3/common/build.xml

Revision 369 (checked in by douglm, 7 years ago)

Code to support lucene indexing. Nothing being used yet but builds OK

Line 
1 <!-- This is the build.xml for the bedework common classes component.
2
3      Authors: Mike Douglass   douglm@rpi.edu
4 -->
5
6 <project name="common.compile" default="build" >
7   <property name="base.name" value="common"/>
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 common Java sources">
16     <!-- ==================== Sources and classes ====================== -->
17
18     <fileset id="base.java.sources" dir="${source.home}" >
19      <include name="edu/rpi/**/*.java"/>
20     </fileset>
21
22     <patternset id="base.class.patternset">
23       <include name="edu/rpi/**/*.class"/>
24     </patternset>
25
26     <!-- ==================== Compilation Classpath ==================== -->
27
28     <path id="compile.classpath">
29       <pathelement location="${servlet.jar}"/>
30       <pathelement location="${struts.jar}"/>
31       <pathelement location="${fop.jar}"/>
32       <pathelement location="${avalon.jar}"/>
33       <pathelement location="${log4j.jar}"/>
34       <pathelement location="${log4j.jar}"/>
35       <pathelement location="${lucene.jar}"/>
36       <pathelement location="${jtidy.jar}"/>
37     </path>
38
39     <!-- ==================== Build Target ============================= -->
40
41     <property name="build.jar.file" location="${org.bedework.common.jar}" />
42
43     <ant antfile="${buildjar}" inheritRefs="true" target="build" />
44   </target>
45 </project>
Note: See TracBrowser for help on using the browser.