Update of /cvsroot/mc4j/mc4j
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31840
Modified Files:
build.xml
Log Message:
Install the dashboard into a jar for the classpath for the internal entity resolver to find.
Index: build.xml
===================================================================
RCS file: /cvsroot/mc4j/mc4j/build.xml,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** build.xml 7 Apr 2004 20:47:51 -0000 1.32
--- build.xml 8 Apr 2004 15:09:35 -0000 1.33
***************
*** 157,160 ****
--- 157,165 ----
</fileset>
+ <!-- Purposly leave place it in a dashboards package so we don't have to load it from the default pkg -->
+ <fileset dir="application">
+ <include name="dashboards/*.dtd"/>
+ </fileset>
+
<zipfileset src="lib/regexp.jar"><exclude name="META-INF/MANIFEST.MF"/></zipfileset>
***************
*** 189,192 ****
--- 194,198 ----
</copy>
+ <!--
<copy todir="${application.install}" overwrite="yes">
<fileset dir="application/dashboards">
***************
*** 194,197 ****
--- 200,204 ----
</fileset>
</copy>
+ -->
<!-- install the common library of shared files (images only) -->
***************
*** 486,493 ****
<target name="build-docs" depends="init" description="Generates html documentation tree">
<!-- **** Copy needed resources **** -->
! <copy todir="docs">
<fileset dir="${doc.build.dir}">
<include name="*.css"/>
</fileset>
</copy>
--- 493,503 ----
<target name="build-docs" depends="init" description="Generates html documentation tree">
<!-- **** Copy needed resources **** -->
! <copy todir="docs" overwrite="yes" >
<fileset dir="${doc.build.dir}">
<include name="*.css"/>
</fileset>
+ <fileset dir="application/dashboards">
+ <include name="*.dtd"/>
+ </fileset>
</copy>
|