You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by st...@apache.org on 2012/02/21 18:46:36 UTC

git commit: DELTASPIKE-86 add the categories to get packaged as well

Updated Branches:
  refs/heads/master 446441b30 -> cf39ef9d5


DELTASPIKE-86 add the categories to get packaged as well


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

Branch: refs/heads/master
Commit: cf39ef9d560cb8ee953bf381172298330253add8
Parents: 446441b
Author: Mark Struberg <st...@apache.org>
Authored: Tue Feb 21 18:45:01 2012 +0100
Committer: Mark Struberg <st...@apache.org>
Committed: Tue Feb 21 18:45:59 2012 +0100

----------------------------------------------------------------------
 .../api/alternative/local/BdaAlternativeTest.java  |    3 ++-
 .../test/core/api/exclude/ExcludeTest.java         |    1 +
 .../test/core/api/provider/BeanProviderTest.java   |    9 +++++----
 3 files changed, 8 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/cf39ef9d/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/alternative/local/BdaAlternativeTest.java
----------------------------------------------------------------------
diff --git a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/alternative/local/BdaAlternativeTest.java b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/alternative/local/BdaAlternativeTest.java
index cf17fb6..42296a5 100644
--- a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/alternative/local/BdaAlternativeTest.java
+++ b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/alternative/local/BdaAlternativeTest.java
@@ -55,7 +55,8 @@ public class BdaAlternativeTest
                 .addAsLibraries(ShrinkWrapArchiveUtil.getArchives(null,
                         "META-INF/beans.xml",
                         new String[]{"org.apache.deltaspike.core",
-                                "org.apache.deltaspike.test.core.api.alternative"},
+                                     "org.apache.deltaspike.test.category",
+                                     "org.apache.deltaspike.test.core.api.alternative"},
                         new String[]{"META-INF.config"}))
                 .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml")
                 .addAsManifestResource(EmptyAsset.INSTANCE, "GlobalAlternativeTest.INFO");

http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/cf39ef9d/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/exclude/ExcludeTest.java
----------------------------------------------------------------------
diff --git a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/exclude/ExcludeTest.java b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/exclude/ExcludeTest.java
index a9cd3f7..444ff51 100644
--- a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/exclude/ExcludeTest.java
+++ b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/exclude/ExcludeTest.java
@@ -53,6 +53,7 @@ public class ExcludeTest
                 .addAsLibraries(ShrinkWrapArchiveUtil.getArchives(null,
                         "META-INF/beans.xml",
                         new String[]{"org.apache.deltaspike.core",
+                                "org.apache.deltaspike.test.category",
                                 "org.apache.deltaspike.test.core.api.exclude"},
                         null))
                 .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml")

http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/cf39ef9d/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/provider/BeanProviderTest.java
----------------------------------------------------------------------
diff --git a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/provider/BeanProviderTest.java b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/provider/BeanProviderTest.java
index 6268db8..d5d26ef 100644
--- a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/provider/BeanProviderTest.java
+++ b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/provider/BeanProviderTest.java
@@ -43,10 +43,11 @@ public class BeanProviderTest
     {
         return ShrinkWrap.create(WebArchive.class)
                 .addAsLibraries(ShrinkWrapArchiveUtil.getArchives(null,
-                                                  "META-INF/beans.xml",
-                                                  new String[]{"org.apache.deltaspike.core",
-                                                               "org.apache.deltaspike.test.core.api.provider"},
-                                                  null))
+                          "META-INF/beans.xml",
+                          new String[]{"org.apache.deltaspike.core",
+                                       "org.apache.deltaspike.test.category",
+                                       "org.apache.deltaspike.test.core.api.provider"},
+                          null))
                 .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");
     }