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

Peter Muir peter at bleepbleep.org.uk
Fri Sep 28 08:49:54 EDT 2007


  User: pmuir   
  Date: 07/09/28 08:49:54

  Modified:    seam-gen/build-scripts   .classpath build-war.xml
  Log:
  Various fixes for seam-gen inc JBSEAM-1963, updated README
  
  Revision  Changes    Path
  1.27      +5 -0      jboss-seam/seam-gen/build-scripts/.classpath
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: .classpath
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/seam-gen/build-scripts/.classpath,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -b -r1.26 -r1.27
  --- .classpath	27 Sep 2007 10:26:29 -0000	1.26
  +++ .classpath	28 Sep 2007 12:49:54 -0000	1.27
  @@ -33,6 +33,11 @@
       <classpathentry kind="lib" path="lib/ejb-api.jar" />
       <classpathentry kind="lib" path="lib/jsr250-api.jar" />
       <classpathentry kind="lib" path="lib/jta.jar" />
  +    <classpathentry kind="lib" path="lib/core.jar"/>
  +    <classpathentry kind="lib" path="lib/jboss-embedded-api.jar"/> 
  +    <classpathentry kind="lib" path="lib/hibernate-search.jar" />
  +    <classpathentry kind="lib" path="lib/richfaces-api.jar" />
       <classpathentry kind="lib" path="lib/@driverJar@"/>
  +    <classpathentry kind="lib" path="lib/lucene-core.jar" />
       <classpathentry kind="output" path="test-build"/>
   </classpath>
  
  
  
  1.21      +11 -5     jboss-seam/seam-gen/build-scripts/build-war.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build-war.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/seam-gen/build-scripts/build-war.xml,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -b -r1.20 -r1.21
  --- build-war.xml	27 Sep 2007 05:20:14 -0000	1.20
  +++ build-war.xml	28 Sep 2007 12:49:54 -0000	1.21
  @@ -23,7 +23,7 @@
       <property name="bootstrap.dir" value="${basedir}/bootstrap" />
       <property name="deploy.dir" value="${jboss.home}/server/default/deploy" />
       <property name="war.deploy.dir" value="${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" />
  @@ -335,10 +335,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