[dna-commits] DNA SVN: r963 - trunk/extensions/dna-web-jcr-rest.

dna-commits at lists.jboss.org dna-commits at lists.jboss.org
Wed Jun 3 10:19:41 EDT 2009


Author: bcarothers
Date: 2009-06-03 10:19:41 -0400 (Wed, 03 Jun 2009)
New Revision: 963

Modified:
   trunk/extensions/dna-web-jcr-rest/pom.xml
Log:
Overrode RESTEasy JAXB Provider default dependency to use jaxb-impl 2.1.9 since 2.1.8 is no longer in the JBoss Maven repository.

Modified: trunk/extensions/dna-web-jcr-rest/pom.xml
===================================================================
--- trunk/extensions/dna-web-jcr-rest/pom.xml	2009-06-03 13:38:10 UTC (rev 962)
+++ trunk/extensions/dna-web-jcr-rest/pom.xml	2009-06-03 14:19:41 UTC (rev 963)
@@ -22,12 +22,23 @@
 			<groupId>org.jboss.resteasy</groupId>
 			<artifactId>resteasy-jaxb-provider</artifactId>
 			<version>1.1-RC2</version>
-			<!-- 
-			<scope>runtime, integration-test</scope>
- -->
+			<exclusions>
+				<exclusion>
+					<groupId>com.sun.xml.bind</groupId>
+					<artifactId>jaxb-impl</artifactId>
+				</exclusion>
+			</exclusions>
 		</dependency>
 
+		<!-- This is only included as a temp. workaround.  Current release of RESTEasy depends on 2.1.8, which is not in our repo at this time 
+			This should be removed after RESTEasy 1.1GA is released and added to this pom.
+		-->
 		<dependency>
+			<groupId>com.sun.xml.bind</groupId>
+			<artifactId>jaxb-impl</artifactId>
+			<version>2.1.9</version>
+		</dependency>
+		<dependency>
 			<groupId>org.jboss.dna</groupId>
 			<artifactId>dna-jcr</artifactId>
 		</dependency>
@@ -65,5 +76,6 @@
 			<artifactId>jaxb-api</artifactId>
 			<version>2.1</version>
 		</dependency>
+
 	</dependencies>
 </project>




More information about the dna-commits mailing list