dev@glassfish.java.net

pom review - adding jsr-299 api and impl to runtime dependencies for app client

From: Tim Quinn <Timothy.Quinn_at_Sun.COM>
Date: Tue, 27 Oct 2009 16:52:11 -0500

Hi.

The weld JARs need to be accessible to app clients at runtime. These
changes add the api and the implementation JARs to the runtime dependencies.

Thanks.

- Tim


Diffs:

Index: appclient/client/acc/pom.xml
===================================================================
--- appclient/client/acc/pom.xml (revision 33410)
+++ appclient/client/acc/pom.xml (working copy)
@@ -485,7 +485,20 @@
          <groupId>org.glassfish.persistence.cmp</groupId>
          <artifactId>cmp-internal-api</artifactId>
          <version>${project.version}</version>
-</dependency>
+ </dependency>
 
+ <dependency>
+ <scope>runtime</scope>
+ <groupId>org.jboss.weld</groupId>
+ <artifactId>weld-osgi-bundle</artifactId>
+ </dependency>
+
+ <dependency>
+ <scope>runtime</scope>
+ <groupId>org.glassfish.web</groupId>
+ <artifactId>weld-integration</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
    </dependencies>
 </project>