[jboss-cvs] jboss-seam/seam-gen/build-scripts ...

Peter Muir peter at bleepbleep.org.uk
Thu Sep 20 14:37:17 EDT 2007


  User: pmuir   
  Date: 07/09/20 14:37:17

  Modified:    seam-gen/build-scripts  build.xml
  Log:
  Dependency management
  
  Revision  Changes    Path
  1.40      +11 -5     jboss-seam/seam-gen/build-scripts/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/seam-gen/build-scripts/build.xml,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -b -r1.39 -r1.40
  --- build.xml	6 Sep 2007 17:18:46 -0000	1.39
  +++ build.xml	20 Sep 2007 18:37:17 -0000	1.40
  @@ -24,7 +24,7 @@
           <property name="ear.deploy.dir" value="${deploy.dir}/${project.name}.ear" />
           <property name="jar.deploy.dir" value="${ear.deploy.dir}/${project.name}.jar" />
           <property name="war.deploy.dir" value="${ear.deploy.dir}/${project.name}.war" />
  -        <property name="testng.jar" value="${basedir}/lib/testng-5.6-jdk15.jar" />
  +        <property name="testng.jar" value="${basedir}/lib/testng.jar" />
           <property name="javac.debug" value="true" />
           <property name="javac.deprecation" value="false" />
           <property name="debug" value="false" />
  @@ -302,10 +302,16 @@
   
           <target name="test" depends="buildtest" description="Run the tests">            
                   <taskdef resource="testngtasks" classpath="${testng.jar}" />
  +        		<path id="test.path">
  +        			<path path="${test.dir}" />
  +        			<fileset dir="${lib.dir}/test">
  +        				<include name="*.jar"/>
  +        			</fileset>
  +        			<path path="${bootstrap.dir}" />
  +        			<path refid="build.classpath" />
  +        		</path>
                   <testng outputdir="${basedir}/test-report">
  -                        <classpath path="${test.dir}" />
  -                        <classpath path="${bootstrap.dir}" />
  -                        <classpath refid="build.classpath" />
  +                    <classpath refid="test.path" />
                           <xmlfileset dir="${test.dir}" includes="*Test.xml" />
                   </testng>
           </target>
  
  
  



More information about the jboss-cvs-commits mailing list