JBoss Tools SVN: r21714 - branches/modular_build/tests/features/org.jboss.tools.test.feature.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-26 19:13:37 -0400 (Mon, 26 Apr 2010)
New Revision: 21714
Modified:
branches/modular_build/tests/features/org.jboss.tools.test.feature/feature.xml
Log:
update copyright (to force an svn change which should cause build to spin)
Modified: branches/modular_build/tests/features/org.jboss.tools.test.feature/feature.xml
===================================================================
--- branches/modular_build/tests/features/org.jboss.tools.test.feature/feature.xml 2010-04-26 23:10:58 UTC (rev 21713)
+++ branches/modular_build/tests/features/org.jboss.tools.test.feature/feature.xml 2010-04-26 23:13:37 UTC (rev 21714)
@@ -9,7 +9,7 @@
</description>
<copyright>
- Copyright (c) 2007 Exadel, Inc and Red Hat, Inc.
+ Copyright (c) 2007-2010 Exadel, Inc and Red Hat, Inc.
Distributed under license by Red Hat, Inc. All rights reserved.
This program is made available under the terms of the
Eclipse Public License v1.0 which accompanies this distribution,
14 years, 8 months
JBoss Tools SVN: r21713 - branches/modular_build/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-26 19:10:58 -0400 (Mon, 26 Apr 2010)
New Revision: 21713
Modified:
branches/modular_build/build/build.xml
Log:
create fake test result file to avoid Hudson failure
Modified: branches/modular_build/build/build.xml
===================================================================
--- branches/modular_build/build/build.xml 2010-04-26 23:07:40 UTC (rev 21712)
+++ branches/modular_build/build/build.xml 2010-04-26 23:10:58 UTC (rev 21713)
@@ -308,10 +308,10 @@
<delete dir="${basedir}/surefire-reports/NoTestsRun" includeemptydirs="true" />
<mkdir dir="${basedir}/surefire-reports/NoTestsRun" />
<echo file="${basedir}/surefire-reports/NoTestsRun/TEST-org.jboss.tools.NoTestsRun.xml"><?xml version="1.0" encoding="UTF-8" ?>
-<testsuite failures="0" time="0" errors="0" skipped="0" tests="0" name="org.jboss.tools.NoTestsRun"/>
+<testsuite failures="0" time="0.001" errors="0" skipped="0" tests="1" name="org.jboss.tools.NoTestsRun">
+ <testcase time="0.001" classname="org.jboss.tools.NoTestsRun" name="NoTestsRun"/>
+</testsuite>
</echo>
- <delete dir="${basedir}/surefire-reports/${COMPONENT}" includeemptydirs="true" />
- <mkdir dir="${basedir}/surefire-reports/${COMPONENT}" />
</then>
</if>
</target>
14 years, 8 months
JBoss Tools SVN: r21712 - branches/modular_build/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-26 19:07:40 -0400 (Mon, 26 Apr 2010)
New Revision: 21712
Modified:
branches/modular_build/build/build.xml
Log:
create fake test result file to avoid Hudson failure
Modified: branches/modular_build/build/build.xml
===================================================================
--- branches/modular_build/build/build.xml 2010-04-26 22:55:45 UTC (rev 21711)
+++ branches/modular_build/build/build.xml 2010-04-26 23:07:40 UTC (rev 21712)
@@ -303,6 +303,15 @@
<then>
<echo level="info">All components up to date: nothing to do!
To force a build of unchanged components, use -Dbuild.if.sources.unchanged=true</echo>
+
+ <!-- create fake test result file to avoid Hudson failure -->
+ <delete dir="${basedir}/surefire-reports/NoTestsRun" includeemptydirs="true" />
+ <mkdir dir="${basedir}/surefire-reports/NoTestsRun" />
+ <echo file="${basedir}/surefire-reports/NoTestsRun/TEST-org.jboss.tools.NoTestsRun.xml"><?xml version="1.0" encoding="UTF-8" ?>
+<testsuite failures="0" time="0" errors="0" skipped="0" tests="0" name="org.jboss.tools.NoTestsRun"/>
+</echo>
+ <delete dir="${basedir}/surefire-reports/${COMPONENT}" includeemptydirs="true" />
+ <mkdir dir="${basedir}/surefire-reports/${COMPONENT}" />
</then>
</if>
</target>
@@ -341,6 +350,7 @@
</target>
<target name="collect.test.results">
+ <delete dir="${basedir}/surefire-reports/NoTestsRun" includeemptydirs="true" />
<property name="COMPONENT" value="" />
<!-- collect test results by copying ${WORKINGDIR}/${COMPONENT}/**/target/surefire-reports/*.xml into ${basedir}/surefire-reports/${COMPONENT} -->
<delete dir="${basedir}/surefire-reports/${COMPONENT}" includeemptydirs="true" />
14 years, 8 months
JBoss Tools SVN: r21711 - branches/modular_build/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-26 18:55:45 -0400 (Mon, 26 Apr 2010)
New Revision: 21711
Modified:
branches/modular_build/build/build.xml
Log:
flatten paths when collecting test results
Modified: branches/modular_build/build/build.xml
===================================================================
--- branches/modular_build/build/build.xml 2010-04-26 22:49:32 UTC (rev 21710)
+++ branches/modular_build/build/build.xml 2010-04-26 22:55:45 UTC (rev 21711)
@@ -345,7 +345,7 @@
<!-- collect test results by copying ${WORKINGDIR}/${COMPONENT}/**/target/surefire-reports/*.xml into ${basedir}/surefire-reports/${COMPONENT} -->
<delete dir="${basedir}/surefire-reports/${COMPONENT}" includeemptydirs="true" />
<mkdir dir="${basedir}/surefire-reports/${COMPONENT}" />
- <copy todir="${basedir}/surefire-reports/${COMPONENT}">
+ <copy todir="${basedir}/surefire-reports/${COMPONENT}" flatten="true" preservelastmodified="true" overwrite="true">
<fileset dir="${WORKINGDIR}/${COMPONENT}" includes="**/target/surefire-reports/*.xml" />
</copy>
<!-- TODO parse test results files for output to dump into log :: look for lines with ERROR or FAILURE -->
14 years, 8 months
JBoss Tools SVN: r21710 - in branches/modular_build/jbpm/features: org.jboss.tools.jbpm.common.feature and 6 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-26 18:49:32 -0400 (Mon, 26 Apr 2010)
New Revision: 21710
Modified:
branches/modular_build/jbpm/features/org.jboss.tools.flow.jpdl4.feature/
branches/modular_build/jbpm/features/org.jboss.tools.jbpm.common.feature/
branches/modular_build/jbpm/features/org.jboss.tools.jbpm.convert.feature/
branches/modular_build/jbpm/features/org.jboss.tools.jbpm3.feature/
branches/modular_build/jbpm/features/org.jboss.tools.jbpm3.tests.feature/
branches/modular_build/jbpm/features/org.jboss.tools.jbpm4.feature/
branches/modular_build/jbpm/features/org.jboss.tools.jbpm4.tests.feature/
branches/modular_build/jbpm/features/org.jbpm.gd.jpdl.feature/
Log:
ignore target folders
Property changes on: branches/modular_build/jbpm/features/org.jboss.tools.flow.jpdl4.feature
___________________________________________________________________
Name: svn:ignore
+ target
Property changes on: branches/modular_build/jbpm/features/org.jboss.tools.jbpm.common.feature
___________________________________________________________________
Name: svn:ignore
+ target
Property changes on: branches/modular_build/jbpm/features/org.jboss.tools.jbpm.convert.feature
___________________________________________________________________
Name: svn:ignore
+ target
Property changes on: branches/modular_build/jbpm/features/org.jboss.tools.jbpm3.feature
___________________________________________________________________
Name: svn:ignore
+ target
Property changes on: branches/modular_build/jbpm/features/org.jboss.tools.jbpm3.tests.feature
___________________________________________________________________
Name: svn:ignore
+ target
Property changes on: branches/modular_build/jbpm/features/org.jboss.tools.jbpm4.feature
___________________________________________________________________
Name: svn:ignore
+ target
Property changes on: branches/modular_build/jbpm/features/org.jboss.tools.jbpm4.tests.feature
___________________________________________________________________
Name: svn:ignore
+ target
Property changes on: branches/modular_build/jbpm/features/org.jbpm.gd.jpdl.feature
___________________________________________________________________
Name: svn:ignore
+ target
14 years, 8 months
JBoss Tools SVN: r21709 - branches/modular_build/jbpm.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-26 18:41:44 -0400 (Mon, 26 Apr 2010)
New Revision: 21709
Added:
branches/modular_build/jbpm/pom.xml
Log:
jbpm root pom
Added: branches/modular_build/jbpm/pom.xml
===================================================================
--- branches/modular_build/jbpm/pom.xml (rev 0)
+++ branches/modular_build/jbpm/pom.xml 2010-04-26 22:41:44 UTC (rev 21709)
@@ -0,0 +1,21 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>jbpm</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>features</module>
+ <module>plugins</module>
+ <module>site</module>
+ <module>tests</module>
+ </modules>
+</project>
+
\ No newline at end of file
14 years, 8 months
JBoss Tools SVN: r21708 - branches/modular_build/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-26 18:37:55 -0400 (Mon, 26 Apr 2010)
New Revision: 21708
Modified:
branches/modular_build/build/build.xml
Log:
switch to <wcVersion> using revision.max
Modified: branches/modular_build/build/build.xml
===================================================================
--- branches/modular_build/build/build.xml 2010-04-26 22:27:54 UTC (rev 21707)
+++ branches/modular_build/build/build.xml 2010-04-26 22:37:55 UTC (rev 21708)
@@ -195,9 +195,9 @@
</echo>
</then>
-->
- <isset property="svn.info.(a){COMPONENT}.committed.max" />
+ <isset property="svn.info.(a){COMPONENT}.revision.max" />
<then>
- <echo file="${WORKINGDIR}/svn.info-(a){COMPONENT}.txt">svn.info.(a){COMPONENT}.committed.max = ${svn.info.(a){COMPONENT}.committed.max}
+ <echo file="${WORKINGDIR}/svn.info-(a){COMPONENT}.txt">svn.info.(a){COMPONENT}.revision.max = ${svn.info.(a){COMPONENT}.revision.max}
</echo>
</then>
</if>
@@ -252,14 +252,14 @@
-->
<or>
<not>
- <isset property="svn.info.(a){COMPONENT}.committed.max" />
+ <isset property="svn.info.(a){COMPONENT}.revision.max" />
</not>
<not>
- <isset property="svn.info.(a){COMPONENT}.check.committed.max" />
+ <isset property="svn.info.(a){COMPONENT}.check.revision.max" />
</not>
<not>
- <equals arg1="${svn.info.(a){COMPONENT}.committed.max}"
- arg2="${svn.info.(a){COMPONENT}.check.committed.max}"
+ <equals arg1="${svn.info.(a){COMPONENT}.revision.max}"
+ arg2="${svn.info.(a){COMPONENT}.check.revision.max}"
/>
</not>
</or>
14 years, 8 months
JBoss Tools SVN: r21707 - branches/modular_build/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-26 18:27:54 -0400 (Mon, 26 Apr 2010)
New Revision: 21707
Modified:
branches/modular_build/build/build.xml
Log:
switch to <wcVersion> instead of <info>; make tests fail on first problem
Modified: branches/modular_build/build/build.xml
===================================================================
--- branches/modular_build/build/build.xml 2010-04-26 21:09:51 UTC (rev 21706)
+++ branches/modular_build/build/build.xml 2010-04-26 22:27:54 UTC (rev 21707)
@@ -103,7 +103,7 @@
<target name="init" depends="local">
<macrodef name="now">
<sequential>
- <var name="now" unset="true"/>
+ <var name="now" unset="true" />
<tstamp>
<format property="now" pattern="hh:mm:ss" />
</tstamp>
@@ -161,6 +161,7 @@
<attribute name="op" />
<sequential>
<!-- check out or update -->
+ <now />
<if>
<equals arg1="@{op}" arg2="up" />
<then>
@@ -169,7 +170,6 @@
</svn>
</then>
<else>
- <now/>
<echo level="info">Fetch sources from ${svn.root}/@{COMPONENT} into ${WORKINGDIR}/@{COMPONENT}</echo>
<svn javahl="false" svnkit="true" failonerror="true">
<checkout recurse="${svn.recurse}"
@@ -182,14 +182,24 @@
<!-- Store svn info so we can compare it later and thus not need to update or checkout every time -->
<svn javahl="false" svnkit="true" failonerror="false">
+ <!--
<info target="${WORKINGDIR}/@{COMPONENT}" propprefix="svn.info.@{COMPONENT}" verbose="false" />
+ -->
+ <wcVersion path="${WORKINGDIR}/@{COMPONENT}" prefix="svn.info.@{COMPONENT}." />
</svn>
<if>
+ <!--
<isset property="svn.info.(a){COMPONENT}.rev" />
<then>
<echo file="${WORKINGDIR}/svn.info-(a){COMPONENT}.txt">svn.info.(a){COMPONENT}.rev = ${svn.info.(a){COMPONENT}.rev}
</echo>
</then>
+ -->
+ <isset property="svn.info.(a){COMPONENT}.committed.max" />
+ <then>
+ <echo file="${WORKINGDIR}/svn.info-(a){COMPONENT}.txt">svn.info.(a){COMPONENT}.committed.max = ${svn.info.(a){COMPONENT}.committed.max}
+</echo>
+ </then>
</if>
<echo file="build.cfg" message="@{COMPONENT}," append="true" />
</sequential>
@@ -200,8 +210,6 @@
<for param="COMPONENT" list="${COMPONENTS}" delimiter=",
">
<sequential>
- <now/>
- <echo level="info">Fetch @{COMPONENT} sources into ${WORKINGDIR}/</echo>
<if>
<not>
<available file="${WORKINGDIR}/@{COMPONENT}" type="dir" />
@@ -216,12 +224,18 @@
<property file="${WORKINGDIR}/svn.info-(a){COMPONENT}.txt" />
<!-- check svn info; if new version found, svn up -->
<svn javahl="false" svnkit="true" failonerror="false">
+ <!--
<info target="${WORKINGDIR}/@{COMPONENT}"
propprefix="svn.info.(a){COMPONENT}.check"
verbose="false"
/>
+ -->
+ <wcVersion path="${WORKINGDIR}/@{COMPONENT}"
+ prefix="svn.info.(a){COMPONENT}.check."
+ />
</svn>
<if>
+ <!--
<or>
<not>
<isset property="svn.info.(a){COMPONENT}.rev" />
@@ -235,6 +249,20 @@
/>
</not>
</or>
+ -->
+ <or>
+ <not>
+ <isset property="svn.info.(a){COMPONENT}.committed.max" />
+ </not>
+ <not>
+ <isset property="svn.info.(a){COMPONENT}.check.committed.max" />
+ </not>
+ <not>
+ <equals arg1="${svn.info.(a){COMPONENT}.committed.max}"
+ arg2="${svn.info.(a){COMPONENT}.check.committed.max}"
+ />
+ </not>
+ </or>
<then>
<svn.fetch component="@{COMPONENT}" op="up" />
</then>
@@ -285,7 +313,7 @@
<for param="COMPONENT" list="${COMPONENTS.to.build}" delimiter=",
">
<sequential>
- <now/>
+ <now />
<!-- If poms already exist, DO NOT OVERWRITE unless overwrite.existing.pom.xml=true -->
<ant antfile="genpom.xml" target="run" dir="${WORKINGDIR}">
<property name="COMPONENT" value="@{COMPONENT}" />
@@ -309,7 +337,7 @@
</antcall>
</sequential>
</for>
- <now/>
+ <now />
</target>
<target name="collect.test.results">
@@ -498,7 +526,7 @@
<for param="expected.dir" list="${get.sources.expected.dirs}" delimiter=",
">
<sequential>
- <assert failonerror="false" message="Dir @{expected.dir} not found!">
+ <assert failonerror="true" message="Dir @{expected.dir} not found!">
<bool>
<available file="@{expected.dir}" type="dir" />
</bool>
@@ -508,7 +536,7 @@
<for param="expected.file" list="${get.sources.expected.files}" delimiter=",
">
<sequential>
- <assert failonerror="false" message="Dir @{expected.file} not found!">
+ <assert failonerror="true" message="Dir @{expected.file} not found!">
<bool>
<available file="@{expected.file}" type="file" />
</bool>
@@ -521,7 +549,7 @@
2/6: Test build.cfg</echo>
<var name="COMPONENTS.to.build" unset="true" />
<antcallback target="get.components.to.build" return="COMPONENTS.to.build" />
- <assert failonerror="false"
+ <assert failonerror="true"
message="expected: [${get.components.to.build.expected.2}] but got: [${COMPONENTS.to.build}]"
>
<bool>
@@ -539,7 +567,7 @@
<for param="expected.dir" list="${get.sources.expected.dirs}" delimiter=",
">
<sequential>
- <assert failonerror="false" message="Dir @{expected.dir} not found!">
+ <assert failonerror="true" message="Dir @{expected.dir} not found!">
<bool>
<available file="@{expected.dir}" type="dir" />
</bool>
@@ -549,7 +577,7 @@
<for param="expected.file" list="${get.sources.expected.files}" delimiter=",
">
<sequential>
- <assert failonerror="false" message="Dir @{expected.file} not found!">
+ <assert failonerror="true" message="Dir @{expected.file} not found!">
<bool>
<available file="@{expected.file}" type="file" />
</bool>
@@ -562,7 +590,7 @@
4/6: Test build.cfg</echo>
<var name="COMPONENTS.to.build" unset="true" />
<antcallback target="get.components.to.build" return="COMPONENTS.to.build" />
- <assert failonerror="false"
+ <assert failonerror="true"
message="expected: [${get.components.to.build.expected.4}] but got: [${COMPONENTS.to.build}]"
>
<bool>
@@ -577,7 +605,7 @@
<for param="expected.dir" list="${get.sources.expected.dirs}" delimiter=",
">
<sequential>
- <assert failonerror="false" message="Dir @{expected.dir} not found!">
+ <assert failonerror="true" message="Dir @{expected.dir} not found!">
<bool>
<available file="@{expected.dir}" type="dir" />
</bool>
@@ -587,7 +615,7 @@
<for param="expected.file" list="${get.sources.expected.files}" delimiter=",
">
<sequential>
- <assert failonerror="false" message="Dir @{expected.file} not found!">
+ <assert failonerror="true" message="Dir @{expected.file} not found!">
<bool>
<available file="@{expected.file}" type="file" />
</bool>
@@ -600,7 +628,7 @@
6/6: Test build.cfg</echo>
<var name="COMPONENTS.to.build" unset="true" />
<antcallback target="get.components.to.build" return="COMPONENTS.to.build" />
- <assert failonerror="false"
+ <assert failonerror="true"
message="expected: [${get.components.to.build.expected.6}] but got: [${COMPONENTS.to.build}]"
>
<bool>
14 years, 8 months
JBoss Tools SVN: r21706 - branches/modular_build/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-26 17:09:51 -0400 (Mon, 26 Apr 2010)
New Revision: 21706
Modified:
branches/modular_build/build/build.xml
Log:
ensure up to date bootstrap scripts
Modified: branches/modular_build/build/build.xml
===================================================================
--- branches/modular_build/build/build.xml 2010-04-26 21:03:43 UTC (rev 21705)
+++ branches/modular_build/build/build.xml 2010-04-26 21:09:51 UTC (rev 21706)
@@ -147,13 +147,6 @@
<available file="${COMMON_TOOLS}/apache-maven-${maven.version}/bin/mvn" type="file" property="maven.exists" />
<antcall target="get.maven" />
-
- <condition property="bootstrap.scripts.exist" value="true">
- <and>
- <available file="${WORKINGDIR}/parent-pom.xml" type="file" />
- <available file="${WORKINGDIR}/genpom.xml" type="file" />
- </and>
- </condition>
</target>
<target name="get.sources" description="if sources not already on disk, fetch them">
@@ -269,7 +262,7 @@
</target>
- <target name="get.bootstrap.scripts" unless="bootstrap.scripts.exist">
+ <target name="get.bootstrap.scripts">
<!-- also get files required to bootstrap the build -->
<get src="${svn.root}/parent-pom.xml" dest="${WORKINGDIR}/parent-pom.xml" usetimestamp="true" />
<get src="${svn.root}/genpom.xml" dest="${WORKINGDIR}/genpom.xml" usetimestamp="true" />
14 years, 8 months
JBoss Tools SVN: r21705 - branches/modular_build/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-26 17:03:43 -0400 (Mon, 26 Apr 2010)
New Revision: 21705
Modified:
branches/modular_build/build/build.xml
Log:
add timestamps to log
Modified: branches/modular_build/build/build.xml
===================================================================
--- branches/modular_build/build/build.xml 2010-04-26 20:52:05 UTC (rev 21704)
+++ branches/modular_build/build/build.xml 2010-04-26 21:03:43 UTC (rev 21705)
@@ -37,9 +37,7 @@
cd /home/nboldt/workspace36/jbosstools-modular_build; ant -DCOMPONENTS=tests,common -Dbuild.if.sources.unchanged=true
-->
- <target name="run"
- depends="init, get.bootstrap.scripts, get.sources, get.components.to.build, run.build"
- />
+ <target name="run" depends="init, get.bootstrap.scripts, get.sources, get.components.to.build, run.build" />
<!-- override for local build -->
<condition property="isInHudson" value="true">
@@ -103,6 +101,16 @@
</target>
<target name="init" depends="local">
+ <macrodef name="now">
+ <sequential>
+ <var name="now" unset="true"/>
+ <tstamp>
+ <format property="now" pattern="hh:mm:ss" />
+ </tstamp>
+ <echo>${now}</echo>
+ </sequential>
+ </macrodef>
+
<!-- https://jira.jboss.org/jira/browse/JBQA-3313 Use static, shared space outside workspace, instead of working directly in the workspace -->
<condition property="WORKINGDIR" value="/home/hudson/static_build_env/jbds/tools/sources" else="${basedir}">
<available file="/home/hudson/static_build_env/jbds" type="dir" />
@@ -168,6 +176,7 @@
</svn>
</then>
<else>
+ <now/>
<echo level="info">Fetch sources from ${svn.root}/@{COMPONENT} into ${WORKINGDIR}/@{COMPONENT}</echo>
<svn javahl="false" svnkit="true" failonerror="true">
<checkout recurse="${svn.recurse}"
@@ -180,7 +189,7 @@
<!-- Store svn info so we can compare it later and thus not need to update or checkout every time -->
<svn javahl="false" svnkit="true" failonerror="false">
- <info target="${WORKINGDIR}/@{COMPONENT}" propprefix="svn.info.@{COMPONENT}" verbose="true" />
+ <info target="${WORKINGDIR}/@{COMPONENT}" propprefix="svn.info.@{COMPONENT}" verbose="false" />
</svn>
<if>
<isset property="svn.info.(a){COMPONENT}.rev" />
@@ -198,7 +207,7 @@
<for param="COMPONENT" list="${COMPONENTS}" delimiter=",
">
<sequential>
- <!-- TODO: add timestamps / elapsed time -->
+ <now/>
<echo level="info">Fetch @{COMPONENT} sources into ${WORKINGDIR}/</echo>
<if>
<not>
@@ -216,7 +225,7 @@
<svn javahl="false" svnkit="true" failonerror="false">
<info target="${WORKINGDIR}/@{COMPONENT}"
propprefix="svn.info.(a){COMPONENT}.check"
- verbose="true"
+ verbose="false"
/>
</svn>
<if>
@@ -283,7 +292,7 @@
<for param="COMPONENT" list="${COMPONENTS.to.build}" delimiter=",
">
<sequential>
- <!-- TODO: add timestamps / elapsed time -->
+ <now/>
<!-- If poms already exist, DO NOT OVERWRITE unless overwrite.existing.pom.xml=true -->
<ant antfile="genpom.xml" target="run" dir="${WORKINGDIR}">
<property name="COMPONENT" value="@{COMPONENT}" />
@@ -302,16 +311,16 @@
<!-- <arg line="-o -Dmaven.test.skip" /> -->
<arg line="${MAVEN_FLAGS} -Dmaven.repo.local=${COMMON_TOOLS}/m2-repository clean install" />
</exec>
-
<antcall target="collect.test.results">
<param name="COMPONENT" value="@{COMPONENT}" />
</antcall>
</sequential>
</for>
+ <now/>
</target>
<target name="collect.test.results">
- <property name="COMPONENT" value=""/>
+ <property name="COMPONENT" value="" />
<!-- collect test results by copying ${WORKINGDIR}/${COMPONENT}/**/target/surefire-reports/*.xml into ${basedir}/surefire-reports/${COMPONENT} -->
<delete dir="${basedir}/surefire-reports/${COMPONENT}" includeemptydirs="true" />
<mkdir dir="${basedir}/surefire-reports/${COMPONENT}" />
14 years, 8 months