dev@glassfish.java.net

Review request: appclient/acc pom.xml revision (v3.1)

From: Tim Quinn <Timothy.Quinn_at_Sun.COM>
Date: Mon, 14 Dec 2009 13:40:53 -0600

Hi.

App clients need to have the GlassFish-provided JAXB implementation JAR
accessible, rather than relying on the corresponding classes in the Java
SE runtime. That dependency was excluded from the pom. This change
corrects that.

Thanks.

- Tim


Index: appclient/client/acc/pom.xml
===================================================================
--- appclient/client/acc/pom.xml (revision 35098)
+++ appclient/client/acc/pom.xml (working copy)
@@ -492,10 +492,18 @@
 
      <!-- endorsed: jaxb-api-osgi.jar -->
      <dependency>
+ <scope>runtime</scope>
          <groupId>javax.xml.bind</groupId>
          <artifactId>jaxb-api-osgi</artifactId>
      </dependency>
 
+ <!-- GlassFish-delivered version jaxb-osgi.jar -->
+ <dependency>
+ <scope>runtime</scope>
+ <groupId>com.sun.xml.bind</groupId>
+ <artifactId>jaxb-osgi</artifactId>
+ </dependency>
+
      <!-- endorsed: webservices-api-osgi.jar -->
      <dependency>
         <groupId>javax.xml</groupId>