You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by li...@apache.org on 2013/01/04 21:10:05 UTC

git commit: Fixing DELTASPIKE-303

Updated Branches:
  refs/heads/master 8bd3795aa -> ec70a2b4a


Fixing DELTASPIKE-303

Adding the needed dependencies for jbossas-remote-7 profile


Project: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/commit/ec70a2b4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/tree/ec70a2b4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/diff/ec70a2b4

Branch: refs/heads/master
Commit: ec70a2b4a2bdace28121f3ef37b08e1436673112
Parents: 8bd3795
Author: Jason Porter <li...@apache.org>
Authored: Fri Jan 4 13:08:30 2013 -0700
Committer: Jason Porter <li...@apache.org>
Committed: Fri Jan 4 13:09:57 2013 -0700

----------------------------------------------------------------------
 deltaspike/parent/code/pom.xml |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/ec70a2b4/deltaspike/parent/code/pom.xml
----------------------------------------------------------------------
diff --git a/deltaspike/parent/code/pom.xml b/deltaspike/parent/code/pom.xml
index 089aba8..c2c6f98 100644
--- a/deltaspike/parent/code/pom.xml
+++ b/deltaspike/parent/code/pom.xml
@@ -508,11 +508,28 @@
             <dependencies>
 
                 <dependency>
+                    <groupId>javax.enterprise</groupId>
+                    <artifactId>cdi-api</artifactId>
+                    <version>1.0-SP4</version>
+                    <scope>provided</scope>
+                </dependency>
+                <dependency>
+                    <groupId>javax.inject</groupId>
+                    <artifactId>javax.inject</artifactId>
+                    <version>1</version>
+                    <scope>provided</scope>
+                </dependency>
+                <dependency>
                     <groupId>org.jboss.as</groupId>
                     <artifactId>jboss-as-arquillian-container-remote</artifactId>
                     <version>${jboss.as.version}</version>
                     <scope>test</scope>
                 </dependency>
+                <dependency>
+                    <groupId>org.jboss.arquillian.protocol</groupId>
+                    <artifactId>arquillian-protocol-servlet</artifactId>
+                    <scope>test</scope>
+                </dependency>
 
             </dependencies>
             <build>