Updated Branches: refs/heads/master 59ead86a4 -> a5cbba599
Realized that the bean validation module wasn't being setup with OSGi module support. Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/a5cbba59 Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/a5cbba59 Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/a5cbba59 Branch: refs/heads/master Commit: a5cbba59996fb6323fc30da4e93ea7067927f8e0 Parents: 59ead86 Author: John D. Ament <[email protected]> Authored: Tue Jul 16 20:16:48 2013 -0400 Committer: John D. Ament <[email protected]> Committed: Tue Jul 16 20:16:48 2013 -0400 ---------------------------------------------------------------------- deltaspike/modules/bean-validation/impl/pom.xml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/deltaspike/blob/a5cbba59/deltaspike/modules/bean-validation/impl/pom.xml ---------------------------------------------------------------------- diff --git a/deltaspike/modules/bean-validation/impl/pom.xml b/deltaspike/modules/bean-validation/impl/pom.xml index c9c2d37..d54e887 100644 --- a/deltaspike/modules/bean-validation/impl/pom.xml +++ b/deltaspike/modules/bean-validation/impl/pom.xml @@ -20,9 +20,13 @@ </parent> <artifactId>deltaspike-bean-validation-module-impl</artifactId> - + <packaging>bundle</packaging> <name>Apache DeltaSpike BeanValidation-Module Impl</name> - + <properties> + <deltaspike.osgi.export.pkg>org.apache.deltaspike.beanValidation.impl.*</deltaspike.osgi.export.pkg> + <deltaspike.osgi.import>!org.apache.deltaspike.beanValidation.impl.*,*</deltaspike.osgi.import> + <cdi.osgi.beans-managed>META-INF/beans.xml</cdi.osgi.beans-managed> + </properties> <dependencies> <dependency> <groupId>org.apache.deltaspike.core</groupId>
