[shrinkwrap-issues] [JBoss JIRA] Commented: (SHRINKWRAP-239) Support the notion of shrinkwrap BundleArchive

David Bosschaert (JIRA) jira-events at lists.jboss.org
Tue Nov 9 04:44:01 EST 2010


    [ https://jira.jboss.org/browse/SHRINKWRAP-239?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12562065#action_12562065 ] 

David Bosschaert commented on SHRINKWRAP-239:
---------------------------------------------

Yes - Shrinkwrap should be usable from inside an OSGi framework. I've added a separate issue for that: SHRINKWRAP-242 and will start looking into it.

> Support the notion of shrinkwrap BundleArchive 
> -----------------------------------------------
>
>                 Key: SHRINKWRAP-239
>                 URL: https://jira.jboss.org/browse/SHRINKWRAP-239
>             Project: ShrinkWrap
>          Issue Type: Feature Request
>          Components: assembly
>            Reporter: Thomas Diesler
>
> Currently we create test bundles like this
>       final JavaArchive archive = ShrinkWrap.create("test.jar", JavaArchive.class);
>       archive.setManifest(new Asset()
>       {
>          public InputStream openStream()
>          {
>             OSGiManifestBuilder builder = OSGiManifestBuilder.newInstance();
>             builder.addBundleSymbolicName(archive.getName());
>             builder.addBundleManifestVersion(2);
>             builder.addBundleActivator(SimpleActivator.class.getName());
>             // [TODO] generate a separate bundle the contains the test case
>             builder.addExportPackages(OSGiEmbeddedFrameworkTestCase.class);
>             builder.addImportPackages("org.jboss.arquillian.junit", "org.jboss.shrinkwrap.api", "org.jboss.shrinkwrap.api.spec");
>             builder.addImportPackages("javax.inject", "org.junit", "org.junit.runner");
>             return builder.openStream();
>          }
>       });
>       archive.addClasses(SimpleActivator.class, SimpleService.class);
>       archive.addClasses(OSGiEmbeddedFrameworkTestCase.class);
> This should be done much easier via a BundleArchive

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the shrinkwrap-issues mailing list