Skip to content

Instantly share code, notes, and snippets.

@aslakknutsen
Created March 29, 2011 16:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aslakknutsen/892747 to your computer and use it in GitHub Desktop.
Save aslakknutsen/892747 to your computer and use it in GitHub Desktop.
Patch to use the Arquillian Alpha5 Weld EE Container. Update the weld provided Container by using this branch: https://github.com/weld/arquillian-weld-embedded-1.1/tree/arquillian
diff --git a/inject-tck-runner/pom.xml b/inject-tck-runner/pom.xml
index 571ccc3..8b76dbb 100644
--- a/inject-tck-runner/pom.xml
+++ b/inject-tck-runner/pom.xml
@@ -44,7 +44,7 @@
</dependency>
<dependency>
- <groupId>org.jboss.weld.arquillian.container</groupId>
+ <groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-weld-ee-embedded-1.1</artifactId>
<scope>test</scope>
</dependency>
diff --git a/jboss-tck-runner/pom.xml b/jboss-tck-runner/pom.xml
index 1f5e3cc..12cd505 100644
--- a/jboss-tck-runner/pom.xml
+++ b/jboss-tck-runner/pom.xml
@@ -61,7 +61,7 @@
</dependency>
<dependency>
- <groupId>org.jboss.weld.arquillian.container</groupId>
+ <groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-weld-ee-embedded-1.1</artifactId>
<scope>test</scope>
</dependency>
diff --git a/parent/pom.xml b/parent/pom.xml
index 66e0639..1324ad3 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -160,9 +160,9 @@
</dependency>
<dependency>
- <groupId>org.jboss.weld.arquillian.container</groupId>
+ <groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-weld-ee-embedded-1.1</artifactId>
- <version>${project.version}</version>
+ <version>${arquillian.version}</version>
</dependency>
<dependency>
diff --git a/tests-arquillian/pom.xml b/tests-arquillian/pom.xml
index c90249c..05d354c 100644
--- a/tests-arquillian/pom.xml
+++ b/tests-arquillian/pom.xml
@@ -215,7 +215,7 @@
</activation>
<dependencies>
<dependency>
- <groupId>org.jboss.weld.arquillian.container</groupId>
+ <groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-weld-ee-embedded-1.1</artifactId>
<scope>provided</scope>
<!--
diff --git a/tests/pom.xml b/tests/pom.xml
index c55b075..f14e226 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -130,7 +130,7 @@
</dependency>
<dependency>
- <groupId>org.jboss.weld.arquillian.container</groupId>
+ <groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-weld-ee-embedded-1.1</artifactId>
<scope>provided</scope>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment