[jboss-cvs] JBossAS SVN: r94895 - in branches/Branch_5_x: component-matrix and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Oct 14 17:16:08 EDT 2009


Author: smcgowan at redhat.com
Date: 2009-10-14 17:16:08 -0400 (Wed, 14 Oct 2009)
New Revision: 94895

Modified:
   branches/Branch_5_x/build/build-distr.xml
   branches/Branch_5_x/build/build.xml
   branches/Branch_5_x/component-matrix/pom.xml
   branches/Branch_5_x/thirdparty/pom.xml
Log:
JBAS-7377 - add Dependency Injection APIs needed for WELD

Modified: branches/Branch_5_x/build/build-distr.xml
===================================================================
--- branches/Branch_5_x/build/build-distr.xml	2009-10-14 21:11:53 UTC (rev 94894)
+++ branches/Branch_5_x/build/build-distr.xml	2009-10-14 21:16:08 UTC (rev 94895)
@@ -2061,6 +2061,9 @@
       <fileset dir="${javax.enterprise.lib}">
         <include name="cdi-api.jar"/>
       </fileset>
+      <fileset dir="${javax.inject.lib}">
+        <include name="javax.inject.jar"/>
+      </fileset>
       <fileset dir="${org.apache.lib}">
         <include name="xmlsec.jar"/>
       </fileset>
@@ -2233,6 +2236,9 @@
       <fileset dir="${javax.enterprise.lib}">
         <include name="cdi-api.jar"/>
       </fileset>
+      <fileset dir="${javax.inject.lib}">
+        <include name="javax.inject.jar"/>
+      </fileset>
       <fileset dir="${org.jboss.interceptor.lib}">
         <include name="jboss-interceptor-api.jar"/>
       </fileset>

Modified: branches/Branch_5_x/build/build.xml
===================================================================
--- branches/Branch_5_x/build/build.xml	2009-10-14 21:11:53 UTC (rev 94894)
+++ branches/Branch_5_x/build/build.xml	2009-10-14 21:16:08 UTC (rev 94895)
@@ -906,6 +906,7 @@
       <include name="jboss-appclient.jar"/>
       <include name="jboss-common*.jar"/>
       <include name="jboss-ejb3-ext-api.jar"/>
+      <include name="javax.inject.jar"/>
       <include name="jboss-interceptor-api.jar"/>
       <include name="jboss-logging*.jar"/>
       <include name="slf4j-api.jar"/>

Modified: branches/Branch_5_x/component-matrix/pom.xml
===================================================================
--- branches/Branch_5_x/component-matrix/pom.xml	2009-10-14 21:11:53 UTC (rev 94894)
+++ branches/Branch_5_x/component-matrix/pom.xml	2009-10-14 21:16:08 UTC (rev 94895)
@@ -1847,6 +1847,12 @@
       </dependency>
 
       <dependency>
+        <groupId>javax.inject</groupId>
+        <artifactId>javax.inject</artifactId>
+        <version>1</version>
+      </dependency>
+
+      <dependency>
         <groupId>org.jboss.jpa</groupId>
         <artifactId>jboss-jpa-deployers</artifactId>
         <version>${version.org.jboss.jpa.deployers}</version>

Modified: branches/Branch_5_x/thirdparty/pom.xml
===================================================================
--- branches/Branch_5_x/thirdparty/pom.xml	2009-10-14 21:11:53 UTC (rev 94894)
+++ branches/Branch_5_x/thirdparty/pom.xml	2009-10-14 21:16:08 UTC (rev 94895)
@@ -1339,6 +1339,10 @@
       <groupId>javax.enterprise</groupId>
       <artifactId>cdi-api</artifactId>
      </dependency>
+    <dependency>
+      <groupId>javax.inject</groupId>
+      <artifactId>javax.inject</artifactId>
+     </dependency>
      <dependency>
       <groupId>org.jboss.weld</groupId>
       <artifactId>weld-api</artifactId>




More information about the jboss-cvs-commits mailing list