jdillon 2003/09/01 15:06:55
Modified: etc maven.xml
Log:
o fixed typo, nulling uptodate prop before using
Revision Changes Path
1.21 +3 -3 incubator-geronimo/etc/maven.xml
Index: maven.xml
===================================================================
RCS file: /home/cvs/incubator-geronimo/etc/maven.xml,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- maven.xml 1 Sep 2003 20:47:04 -0000 1.20
+++ maven.xml 1 Sep 2003 22:06:55 -0000 1.21
@@ -198,12 +198,12 @@
</j:if>
<j:set var="uptodatePropName" value="xdoclet.jmx.uptodate"/>
- <j:remove var="${uptodatePropName}"/>
+ <j:expr value="${context.setVariable(uptodatePropName, null)}"/>
<j:set var="uptodateFile" value="${destdir}/tstamp"/>
<uptodate property="${uptodatePropName}"
targetfile="${uptodateFile}">
- <srcfiles dir="${srcdic}" includes="**/*.java"/>
+ <srcfiles dir="${srcdir}" includes="**/*.java"/>
</uptodate>
<j:if test="${context.getVariable(uptodatePropName) == null}">