blob: fbe6090fefb4a3d113fe1967bb97f5bd1faa203e [file] [log] [blame]
<?xml version="1.0"?>
<!-- ======================================================================
Mar 13, 2005 5:29:14 PM
RLOG
Builds a cvs rlog
naci
====================================================================== -->
<project name="RLOG" default="rlog">
<property file="builddates.properties"/>
<description>
Builds a cvs rlog
</description>
<!-- =================================
target: rlog
================================= -->
<path id="rlog.path">
<fileset dir="${rlog.home}/lib" includes="*.jar"/>
</path>
<target name="rlog" description="--> Builds a cvs rlog">
<condition property="rlog.from.date" value="${integration.build.date}">
<equals arg1="${buildType}" arg2="I" />
</condition>
<condition property="rlog.from.date" value="${milestone.build.date}">
<equals arg1="${buildType}" arg2="S" />
</condition>
<condition property="rlog.from.date" value="${integration.build.date}">
<equals arg1="${buildType}" arg2="N" />
</condition>
<condition property="rlog.from.date" value="${release.build.date}">
<equals arg1="${buildType}" arg2="R" />
</condition>
<condition property="rlog.from.date" value="${release.build.date}">
<equals arg1="${buildType}" arg2="M" />
</condition>
<tstamp>
<format property="rlog.to.date" pattern="yyyy-MM-dd HH:mm:ss 'GMT'" locale="en"/>
</tstamp>
<mkdir dir="${rlog.log.dir}" />
<mkdir dir="${rlog.html.dir}" />
<java classpathref="rlog.path" fork="true" classname="org.eclipse.wtp.releng.cvslog.tools.Main" failonerror="true">
<jvmarg value="-Xms128m"/>
<jvmarg value="-Xmx512m"/>
<arg value=":${cvsProtocol}:${cvsUser}@${cvsServer}:${cvsRoot}"/>
<arg value="${rlog.from.date}" />
<arg value="${rlog.to.date}" />
<arg value="HEAD" />
<arg value="${rlog.log.dir}/rlog.xml"/>
<arg value="wst" />
<arg value="jst" />
<arg value="org.eclipse.wtp.releng" />
</java>
<style style="${rlog.home}/xml/whatsnew-cvs.xsl" basedir="${rlog.log.dir}/" destdir="${rlog.html.dir}" />
</target>
</project>