| Since July 2011, Tinybundles is available as a single, independent library as Pax Tinybundles. Its not part of Swissbox anymore. |
Java APIs to create OSGi related artifacts
This is all about creating OSGi related artifacts like Bundles, Fragments and Deployment Packages with Java Api. It is very convinient to create such artifacts on-the-fly inside Tests (like in Pax Exam).
On the other hand, this library can be a foundation of real end user tools that need to create those artifacts.
Usage
Add this to your pom:
All artifacts are available on Maven Central for general use.
Sourcecode
Sources are on Github at https://github.com/ops4j/org.ops4j.pax.tinybundles
Create Bundles
To get full benefit of the fluent api, you should include
in your import section.
With this small library you can create small bundles like so:
Have a look at https://github.com/ops4j/org.ops4j.pax.tinybundles/blob/master/src/test/java/org/ops4j/pax/tinybundles/Examples.java to see a complete list of use case examples.
We found this quite useful when for example testing extender-bundles like PaxWeb or SpringDM.
As you see, resources are pulled from "current classpath" which means that you can easily construct stuff like you do in ordinary java apps and pull them together using a fluent api like the above.
It is also trivial to create thounsands of (different) bundles to test high load for example.
Create Fragments
Basically same as Bundles with just the "Bundle-Host" Header added in "set" section.


1 Comment
comments.show.hideJul 20, 2011
Anonymous
For some reason, adding tinybundles dependency to pom.xml is not working. Am having to manually download bundle from maven repository and include it. Any reason why ? BTW pax exam just rocks. But there are lots of dead links when it comes to documentation.