jtaylor 02/02/11 16:32:22
Modified: . build.xml default.properties
Log:
Accidently clobbered some of jason's DVSL changes in my last commit, this should fix
things.
Revision Changes Path
1.25 +24 -45 jakarta-turbine-3/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-3/build.xml,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- build.xml 11 Feb 2002 23:58:05 -0000 1.24
+++ build.xml 12 Feb 2002 00:32:22 -0000 1.25
@@ -40,6 +40,7 @@
<pathelement location="${commons-collections.jar}"/>
<pathelement location="${commons-util.jar}"/>
<pathelement location="${stratum.jar}"/>
+ <pathelement location="${dvsl.jar}"/>
<pathelement location="${jgen.jar}"/>
<!-- AspectJ Jars for non-invasive use of aspects -->
@@ -202,12 +203,6 @@
<classpath refid="classpath"/>
</available>
- <available
- classname="org.apache.velocity.anakia.AnakiaTask"
- property="AnakiaTask.present"
- classpathref="classpath"
- />
-
</target>
<target name="check.commons-beanutils"
@@ -593,47 +588,31 @@
</echo>
</target>
+
+ <!-- ================================================================== -->
+ <!-- D V S L D O C U M E N T A T I O N -->
+ <!-- ================================================================== -->
+
<target
- name="docs"
- depends="docs-prepare-error"
- description="==> generates the HTML documentation"
- if="jdom.present">
-
- <taskdef name="anakia"
- classname="org.apache.velocity.anakia.AnakiaTask">
- <classpath>
- <fileset dir="${jakarta.site2}/lib">
- <include name="*.jar"/>
- </fileset>
- </classpath>
- </taskdef>
+ name="docs">
- <anakia
- basedir="${docs.src}"
- destdir="${docs.dest}/"
- extension=".html" style="./site.vsl"
- projectFile="stylesheets/project.xml"
- excludes="**/stylesheets/** empty.xml"
- includes="**/*.xml"
- lastModifiedCheck="true"
- templatePath="${jakarta.site2}/xdocs/stylesheets">
- </anakia>
-
- <copy todir="${docs.dest}/images" filtering="no">
- <fileset dir="${docs.src}/images">
- <include name="**/*.gif"/>
- <include name="**/*.jpeg"/>
- <include name="**/*.jpg"/>
- </fileset>
- </copy>
-
- <!-- In case we have CSS someday
- <copy todir="${docs.dest}" filtering="no">
- <fileset dir="${docs.src}">
- <include name="**/*.css"/>
- </fileset>
- </copy>
- -->
+ <taskdef name="dvsl" classname="org.apache.tools.dvsl.DVSLTask">
+ <classpath>
+ <path refid="classpath"/>
+ </classpath>
+ </taskdef>
+
+ <!-- Make sure the target directory -->
+ <mkdir dir="${docs.dest}"/>
+ <dvsl
+ basedir="${docs.src}"
+ destdir="${docs.dest}/"
+ extension=".html"
+ toolbox="${docs.src}/toolbox.props"
+ style="${docs.src}/stylesheets/site.dvsl"
+ excludes="**/project.xml,**/template.xml"
+ includes="**/*.xml"
+ />
</target>
<!-- ================================================================== -->
1.16 +1 -0 jakarta-turbine-3/default.properties
Index: default.properties
===================================================================
RCS file: /home/cvs/jakarta-turbine-3/default.properties,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- default.properties 11 Feb 2002 23:58:05 -0000 1.15
+++ default.properties 12 Feb 2002 00:32:22 -0000 1.16
@@ -30,6 +30,7 @@
# jar files
velocity.jar = ${lib.repo}/velocity-1.3-dev.jar
+dvsl.jar = ${lib.repo}/velocity-dvsl-0.31.jar
log4j.jar = ${lib.repo}/log4j-1.1.3.jar
servlet.jar = ${lib.repo}/servlet-2.2.jar
fulcrum.jar = ${lib.repo}/fulcrum-1.0.jar
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>