[seam-commits] Seam SVN: r9449 - in trunk: seam-gen and 1 other directory.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Mon Oct 27 14:42:33 EDT 2008


Author: dan.j.allen
Date: 2008-10-27 14:42:33 -0400 (Mon, 27 Oct 2008)
New Revision: 9449

Modified:
   trunk/build/gen.pom.xml
   trunk/build/root.pom.xml
   trunk/seam-gen/build.xml
Log:
JBSEAM-3637


Modified: trunk/build/gen.pom.xml
===================================================================
--- trunk/build/gen.pom.xml	2008-10-27 18:10:02 UTC (rev 9448)
+++ trunk/build/gen.pom.xml	2008-10-27 18:42:33 UTC (rev 9449)
@@ -70,6 +70,12 @@
          <scope>runtime</scope>
       </dependency>
 
+      <dependency>
+         <groupId>javax.xml.bind</groupId>
+         <artifactId>jaxb-api</artifactId>
+         <scope>runtime</scope>
+      </dependency>
+
    </dependencies>
 
 

Modified: trunk/build/root.pom.xml
===================================================================
--- trunk/build/root.pom.xml	2008-10-27 18:10:02 UTC (rev 9448)
+++ trunk/build/root.pom.xml	2008-10-27 18:42:33 UTC (rev 9449)
@@ -640,6 +640,22 @@
       </dependency>
 
       <dependency>
+        <groupId>javax.xml.bind</groupId>
+        <artifactId>jaxb-api</artifactId>
+        <version>2.1</version>
+        <exclusions>
+          <exclusion>
+            <groupId>javax.xml.stream</groupId>
+            <artifactId>stax-api</artifactId>
+          </exclusion>
+          <exclusion>
+            <groupId>javax.activation</groupId>
+            <artifactId>activation</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+
+      <dependency>
         <groupId>org.codehaus.groovy</groupId>
         <artifactId>groovy-all</artifactId>
         <version>1.5.4</version>

Modified: trunk/seam-gen/build.xml
===================================================================
--- trunk/seam-gen/build.xml	2008-10-27 18:10:02 UTC (rev 9448)
+++ trunk/seam-gen/build.xml	2008-10-27 18:42:33 UTC (rev 9449)
@@ -607,18 +607,8 @@
             <fileset file="${driver.jar}"/>
         </copy>
 
-        <!-- we must use an endorsed jars directory for running SeamTest under Java 6 -->
-        <artifact:dependencies filesetId="endorsed.fileset" versionsId="endorsed.versions">
-            <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>
-            <remoteRepository refId="repository.jboss.org"/>
-        </artifact:dependencies>
-        <copy todir="${project.home}/lib/endorsed" overwrite="true">
-            <fileset refid="endorsed.fileset"/>
-            <mapper classpathref="maven-ant-tasks.classpath" classname="org.apache.maven.artifact.ant.VersionMapper" from="${endorsed.versions}" to="flatten"/>
-        </copy>
+        <!-- we must use an endorsed jars directory containing JAXB 2.1 for running SeamTest under Java 6 -->
+        <copy todir="${project.home}/lib/endorsed" file="${seam.dir}/lib/gen/jaxb-api.jar" overwrite="true"/>
 
         <echo message="Copying JBoss Embedded configuration to the ${project.home}/bootstrap directory..."/>
         <copy todir="${project.home}/bootstrap" overwrite="true">




More information about the seam-commits mailing list