You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by cm...@apache.org on 2012/09/05 08:33:40 UTC

git commit: DELTASPIKE-210: Add PAx-ManagedBeans property in the MANIFEST.mf file

Updated Branches:
  refs/heads/master 4606ad050 -> 1877ca060


DELTASPIKE-210: Add PAx-ManagedBeans property in the MANIFEST.mf file


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

Branch: refs/heads/master
Commit: 1877ca06094408113c57b518ece125d72008a94e
Parents: 4606ad0
Author: Charles Moulliard <cm...@fusesource.com>
Authored: Wed Sep 5 08:33:16 2012 +0200
Committer: Charles Moulliard <cm...@fusesource.com>
Committed: Wed Sep 5 08:33:16 2012 +0200

----------------------------------------------------------------------
 deltaspike/core/api/pom.xml         |    1 +
 deltaspike/core/impl/pom.xml        |    1 +
 deltaspike/modules/jpa/api/pom.xml  |    1 +
 deltaspike/modules/jpa/impl/pom.xml |    1 +
 deltaspike/parent/pom.xml           |    3 ++-
 5 files changed, 6 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/1877ca06/deltaspike/core/api/pom.xml
----------------------------------------------------------------------
diff --git a/deltaspike/core/api/pom.xml b/deltaspike/core/api/pom.xml
index e90d84d..836d1f4 100644
--- a/deltaspike/core/api/pom.xml
+++ b/deltaspike/core/api/pom.xml
@@ -41,6 +41,7 @@
             !org.apache.deltaspike.core.*,
             *
         </deltaspike.osgi.import>
+        <cdi.osgi.beans-managed>META-INF/beans.xml</cdi.osgi.beans-managed>
     </properties>
 
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/1877ca06/deltaspike/core/impl/pom.xml
----------------------------------------------------------------------
diff --git a/deltaspike/core/impl/pom.xml b/deltaspike/core/impl/pom.xml
index c2e5f90..fb879d7 100644
--- a/deltaspike/core/impl/pom.xml
+++ b/deltaspike/core/impl/pom.xml
@@ -41,6 +41,7 @@
             !org.apache.deltaspike.core.impl.*,
             *
         </deltaspike.osgi.import>
+        <cdi.osgi.beans-managed>META-INF/beans.xml</cdi.osgi.beans-managed>
     </properties>
 
     <dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/1877ca06/deltaspike/modules/jpa/api/pom.xml
----------------------------------------------------------------------
diff --git a/deltaspike/modules/jpa/api/pom.xml b/deltaspike/modules/jpa/api/pom.xml
index 0ec2adb..c4e591e 100644
--- a/deltaspike/modules/jpa/api/pom.xml
+++ b/deltaspike/modules/jpa/api/pom.xml
@@ -40,6 +40,7 @@
             !org.apache.deltaspike.jpa.*,
             *
         </deltaspike.osgi.import>
+        <cdi.osgi.beans-managed>META-INF/beans.xml</cdi.osgi.beans-managed>
     </properties>
 
     <dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/1877ca06/deltaspike/modules/jpa/impl/pom.xml
----------------------------------------------------------------------
diff --git a/deltaspike/modules/jpa/impl/pom.xml b/deltaspike/modules/jpa/impl/pom.xml
index 09fe3d1..228f6db 100644
--- a/deltaspike/modules/jpa/impl/pom.xml
+++ b/deltaspike/modules/jpa/impl/pom.xml
@@ -40,6 +40,7 @@
             !org.apache.deltaspike.jpa.impl.*,
             *
         </deltaspike.osgi.import>
+        <cdi.osgi.beans-managed>META-INF/beans.xml</cdi.osgi.beans-managed>
     </properties>
 
     <dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/1877ca06/deltaspike/parent/pom.xml
----------------------------------------------------------------------
diff --git a/deltaspike/parent/pom.xml b/deltaspike/parent/pom.xml
index 1618ac3..acf2b69 100644
--- a/deltaspike/parent/pom.xml
+++ b/deltaspike/parent/pom.xml
@@ -198,7 +198,7 @@
         <deltaspike.osgi.dynamic />
         <deltaspike.osgi.symbolic.name>${project.groupId}.${project.artifactId}</deltaspike.osgi.symbolic.name>
         <deltaspike.osgi.exclude.dependencies>false</deltaspike.osgi.exclude.dependencies>
-
+        <cdi.osgi.beans-managed></cdi.osgi.beans-managed>
 
     </properties>
 
@@ -705,6 +705,7 @@
                         <Private-Package>${deltaspike.osgi.private.pkg}</Private-Package>
                         <Implementation-Title>Apache DeltaSpike</Implementation-Title>
                         <Implementation-Version>${project.version}</Implementation-Version>
+                        <Pax-ManagedBeans>${cdi.osgi.beans-managed}</Pax-ManagedBeans>
                         <Karaf-Info>DeltaSpike;${project.artifactId}=${project.version}</Karaf-Info>
                         <_versionpolicy>${deltaspike.osgi.import.default.version}</_versionpolicy>
                         <_failok>${deltaspike.osgi.failok}</_failok>