Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2013-09-04 09:20:16 +0000
committerEike Stepper2013-09-04 09:20:16 +0000
commit6478e5d840f0a9672c3e8ae157f18596de26c1ad (patch)
treefc7e0b5c63eb0bc68ada6ce13902e8b6f39e2bed
parent339037676141f9f9102acafc3d8ca3436151fd84 (diff)
downloadcdo-6478e5d840f0a9672c3e8ae157f18596de26c1ad.tar.gz
cdo-6478e5d840f0a9672c3e8ae157f18596de26c1ad.tar.xz
cdo-6478e5d840f0a9672c3e8ae157f18596de26c1ad.zip
Fix build.xml for Hudson
-rw-r--r--plugins/org.eclipse.emf.cdo.releng/build.xml10
1 files changed, 8 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo.releng/build.xml b/plugins/org.eclipse.emf.cdo.releng/build.xml
index ecce2d481b..87a92ea445 100644
--- a/plugins/org.eclipse.emf.cdo.releng/build.xml
+++ b/plugins/org.eclipse.emf.cdo.releng/build.xml
@@ -9,7 +9,7 @@
Contributors:
Eike Stepper - initial API and implementation
-->
-<project name="CDO" default="generate">
+<project name="CDO" default="all">
<property file="local.properties" />
<property file="build.properties" />
@@ -929,7 +929,7 @@
<!-- Generate -->
<!-- ======== -->
- <target name="generate" depends="test" description="Generates the site and other artifacts">
+ <target name="generate" depends="build" description="Generates the site and other artifacts">
<if>
<or>
<isset property="GERRIT_CHANGE_ID" />
@@ -1005,4 +1005,10 @@
</if>
</target>
+ <!-- === -->
+ <!-- All -->
+ <!-- === -->
+
+ <target name="all" depends="test,generate" description="Runs the tests and generates the site and other artifacts"/>
+
</project>

Back to the top