Repository: deltaspike Updated Branches: refs/heads/master e865363e0 -> c37d5ba3b
DELTASPIKE-1175 Test control needs the Weld 2 and 3 profiles for activation. Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/c37d5ba3 Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/c37d5ba3 Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/c37d5ba3 Branch: refs/heads/master Commit: c37d5ba3bab0585a554d1ef56154c74ef2befab7 Parents: e865363 Author: John D. Ament <[email protected]> Authored: Sun Jun 26 20:22:58 2016 -0400 Committer: John D. Ament <[email protected]> Committed: Sun Jun 26 20:22:58 2016 -0400 ---------------------------------------------------------------------- deltaspike/modules/test-control/impl/pom.xml | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/deltaspike/blob/c37d5ba3/deltaspike/modules/test-control/impl/pom.xml ---------------------------------------------------------------------- diff --git a/deltaspike/modules/test-control/impl/pom.xml b/deltaspike/modules/test-control/impl/pom.xml index df8bff1..7942716 100644 --- a/deltaspike/modules/test-control/impl/pom.xml +++ b/deltaspike/modules/test-control/impl/pom.xml @@ -178,6 +178,32 @@ <!-- The remaining bits of this profile are located under deltaspike/parent/code/pom.xml --> </dependencies> </profile> + <profile> + <id>Weld2</id> + <dependencies> + <!-- Adding a test dependency needed for Weld 1.x --> + <dependency> + <groupId>org.apache.deltaspike.cdictrl</groupId> + <artifactId>deltaspike-cdictrl-weld</artifactId> + <scope>test</scope> + </dependency> + + <!-- The remaining bits of this profile are located under deltaspike/parent/code/pom.xml --> + </dependencies> + </profile> + <profile> + <id>Weld3</id> + <dependencies> + <!-- Adding a test dependency needed for Weld 1.x --> + <dependency> + <groupId>org.apache.deltaspike.cdictrl</groupId> + <artifactId>deltaspike-cdictrl-weld</artifactId> + <scope>test</scope> + </dependency> + + <!-- The remaining bits of this profile are located under deltaspike/parent/code/pom.xml --> + </dependencies> + </profile> </profiles> </project>
