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

Peter Muir peter at bleepbleep.org.uk
Thu Dec 6 09:58:31 EST 2007


  User: pmuir   
  Date: 07/12/06 09:58:31

  Modified:    build    common.build.xml ci.build.xml
  Log:
  another go at embedded using java6
  
  Revision  Changes    Path
  1.17      +1 -0      jboss-seam/build/common.build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: common.build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/build/common.build.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -b -r1.16 -r1.17
  --- common.build.xml	6 Dec 2007 13:06:35 -0000	1.16
  +++ common.build.xml	6 Dec 2007 14:58:31 -0000	1.17
  @@ -146,6 +146,7 @@
               </dependency>
   			<dependency groupId="org.jboss.seam.embedded" artifactId="thirdparty-all" version="${embedded.version}" />
   			<dependency groupId="org.jboss.seam.embedded" artifactId="hibernate-all" version="${embedded.version}" />
  +			
   			<remoteRepository refId="repository.jboss.org" />
   			<remoteRepository id="snapshots.jboss.org" url="http://snapshots.jboss.org/maven2" />
   		</artifact:dependencies>
  
  
  
  1.12      +20 -0     jboss-seam/build/ci.build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ci.build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/build/ci.build.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -b -r1.11 -r1.12
  --- ci.build.xml	18 Nov 2007 19:59:22 -0000	1.11
  +++ ci.build.xml	6 Dec 2007 14:58:31 -0000	1.12
  @@ -34,6 +34,24 @@
   		<build target="testreport" />
   	</target>
   
  +    <target name="tests-java16">
  +    	<build target="cleanall" />
  +        <artifact:dependencies filesetId="endorsed.fileset">
  +            <dependency groupId="javax.xml.bind" artifactId="jaxb-api" version="2.1">
  +                <exclusion groupId="javax.xml.stream" artifactId="stax-api" />
  +                <exclusion groupId="javax.activation" artifactId="activation" />
  +            </dependency>
  +        </artifact:dependencies>
  +    	<property name="endorsed.dir" value="${tmp.dir}/endorsed" />
  +        <copy todir="${endorsed.dir}">
  +            <fileset refid="endorsed.fileset" />
  +        	<mapper type="flatten"/>
  +        </copy>  
  +        <build target="coverageall" testngjvmargs="-Dsun.lang.ClassLoader.allowArraySyntax=true -Djava.endorsed.dirs=${endorsed.dir}"/>
  +        <build target="copytestoutput" />
  +        <build target="testreport" />
  +    </target>
  +
   	<target name="snapshot">
   		<build target="cleanall" />
   		<build target="dist" />
  @@ -47,11 +65,13 @@
   
   	<macrodef name="build">
   		<attribute name="target" />
  +        <attribute name="testngjvmargs" default="" />
   		<sequential>
   			<ant antfile="${seam.dir}/build.xml" target="@{target}" inheritall="false" inheritrefs="false" dir="../">
   				<property name="dist.location" value="dist" />
   				<property name="qualifier" value="-SNAPSHOT" />
   				<property name="quietclean" value="true" />
  +                <property name="testng.jvmargs" value="@{testngjvmargs}" />
   			</ant>
   		</sequential>
   	</macrodef>
  
  
  



More information about the jboss-cvs-commits mailing list