You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ri...@apache.org on 2010/07/21 16:26:01 UTC

svn commit: r966240 - /felix/sandbox/rickhall/bnd-test/org.apache.felix.framework.test/recipes/classloading.b003.bnd

Author: rickhall
Date: Wed Jul 21 14:26:01 2010
New Revision: 966240

URL: http://svn.apache.org/viewvc?rev=966240&view=rev
Log:
Modify test case to have a required bundle import its own export
to simulate FELIX-2479.

Modified:
    felix/sandbox/rickhall/bnd-test/org.apache.felix.framework.test/recipes/classloading.b003.bnd

Modified: felix/sandbox/rickhall/bnd-test/org.apache.felix.framework.test/recipes/classloading.b003.bnd
URL: http://svn.apache.org/viewvc/felix/sandbox/rickhall/bnd-test/org.apache.felix.framework.test/recipes/classloading.b003.bnd?rev=966240&r1=966239&r2=966240&view=diff
==============================================================================
--- felix/sandbox/rickhall/bnd-test/org.apache.felix.framework.test/recipes/classloading.b003.bnd (original)
+++ felix/sandbox/rickhall/bnd-test/org.apache.felix.framework.test/recipes/classloading.b003.bnd Wed Jul 21 14:26:01 2010
@@ -3,5 +3,8 @@ Export-Package: \
  org.apache.felix.framework.test.classloading.b002b003split;-noimport:=true, \
  org.apache.felix.framework.test.classloading.b003
 Require-Bundle: org.apache.felix.framework.test.classloading.b002; visibility:="reexport"
-Import-Package: !*
+# We import our exported package explicitly in this case to test for the
+# situation where a required bundle imports its own exports to ensure
+# that requiring bundles still see the exported package.
+Import-Package: org.apache.felix.framework.test.classloading.b003,!*