root/trunk/calendar3/uportal/build.xml

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

Upgrade xalan to 2.6.0
Add portal-bridges-struts to lib
Copy into there portal-bridges-struts-1.2.7.jar portal-bridges-common-1.0.jar
Also copy struts-1.2.7-portlet-1.0.tld as struts-portlet.tld
Add pluto and portlet-api.jar to lib, define in defjars as...
portlet.jar=${org.bedework.default.lib}/portlet-api-1.0.jar
pluto.jar=${org.bedework.default.lib}/pluto-1.0.1-rc2.jar

Add uportaldb target to quickstart/build.xml

Copy quickstart build.xml into calendar3/bldfiles.
Import it into new quickstart build file stripped of all content.
Ensures we always commit build.xml changes.
Also created new README in docs - added an ant README target.
Pointed at both in quickstart README
Delete quickstartfiles/root

Add uportal component to calendar3. Add mun source and other stuff.
Change bldfiles/globalDefs.xml to define it
Change calendar3/build.xml to build it

Change mun rewrite tag to remove ?be=d from url

Line 
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>
Note: See TracBrowser for help on using the browser.