[jboss-cvs] JBossAS SVN: r94337 - in projects/jboss-osgi/projects/osgitck/r4v42: hudson and 1 other directory.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Mon Oct 5 03:07:47 EDT 2009
Author: thomas.diesler at jboss.com
Date: 2009-10-05 03:07:47 -0400 (Mon, 05 Oct 2009)
New Revision: 94337
Modified:
projects/jboss-osgi/projects/osgitck/r4v42/build.xml
projects/jboss-osgi/projects/osgitck/r4v42/hudson/
Log:
Fix dependency in 'init'
Modified: projects/jboss-osgi/projects/osgitck/r4v42/build.xml
===================================================================
--- projects/jboss-osgi/projects/osgitck/r4v42/build.xml 2009-10-05 06:59:28 UTC (rev 94336)
+++ projects/jboss-osgi/projects/osgitck/r4v42/build.xml 2009-10-05 07:07:47 UTC (rev 94337)
@@ -80,15 +80,15 @@
<!-- Hudson -->
<!-- ================================================================== -->
- <target name="hudson-setup">
+ <target name="hudson-setup" depends="init">
<ant dir="${basedir}/hudson" target="hudson-setup" />
</target>
- <target name="hudson-start">
+ <target name="hudson-start" depends="init">
<ant dir="${basedir}/hudson" target="hudson-start" />
</target>
- <target name="hudson-stop">
+ <target name="hudson-stop" depends="init">
<ant dir="${basedir}/hudson" target="hudson-stop" />
</target>
@@ -96,7 +96,7 @@
<!-- TCK Tests -->
<!-- ================================================================== -->
- <target name="tck-core-tests">
+ <target name="tck-core-tests" depends="init">
<ant dir="${osgitck.dir}/osgi.ct" target="clean" />
<ant dir="${osgitck.dir}/osgi.ct" target="publish" />
<ant dir="${osgitck.dir}/osgi.ct" target="osgi.core.tests" />
Property changes on: projects/jboss-osgi/projects/osgitck/r4v42/hudson
___________________________________________________________________
Name: svn:ignore
+ target
More information about the jboss-cvs-commits
mailing list