|
So, instead of creating yet another thread for each and every new bundle, let's just make one unified thread about bundles. Humble Indie Bundle. Indie Royale Bundle. Indie Gala Bundle. Bundle of Bundles with Bundling Bundles Bundle With The Obligatory...
Started by GaryCXJk on
, 20 posts
by 10 people.
Answer Snippets (Read the full thread at telltalegames):
Http://www.joystiq.com/2011/12/08/uk...harity....
And in two days...
Thanks for reminding me.
Hey, the Indie Royale has updated to show what's in the X-Mas Bundle.
|
|
I’m trying to embed some JARs into single OSGi bundle using the feature of maven-bundle-plugin
The thing that worries me is that all packages of embedded JARs are put into the Import-Package header of the generated MANIFEST.MF.
If I specify explicitly...
Started by Ivan Dubrov on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Try to add this:
<Import-Package> -- see this blog post by Peter Kriens... .
Stop bnd from importing them, you can make them optional so that your bundle will still resolve even if they are not supplied by another bundle (at wire time).
|
|
Howdy Folks
Paypal Gift or instant BT please.
Below are the goods...
Dreamcast Bundle + a sealed Dreamshell SD card adaptor
Pics here: MobileMe Gallery
As you can see, it's boxed and it excellent condition. The are some dinks & dents on the box - please...
Started by steve morris on
, 26 posts
by 2 people.
Answer Snippets (Read the full thread at avforums):
Bump hup DC bundle, PS2 bundle, GC bundle & Speccy bundle.
I really need to get rid of this stuff.
|
Ask your Facebook Friends
|
I have an application composed of a GUI and 3 launchd daemon launched command-line executables.
I'm planning to put the executables for the launchd daemons inside the .app bundle for the GUI.
These apps utilize 2 (both fairly small) frameworks which I...
Started by Lawrence Johnston on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
However....
If you purposefully "publish" a framework by putting choosing to link against it .
However, since it seems that all the "apps" you're referring to are within your .app bundle when they are stored within your app bundle.
Frameworks/.
|
|
Hi,
The guys over at AGS set up their first bundle, the bake sale bundle. It contains the following games :
WHAT'S IN THE BAKE SALE BUNDLE?
WHAT IS THIS BAKE SALE THING?
The games and their authors:
9 Months In
by Tachs, Noavana, and gameboy
Abner The...
Started by confused on
, 15 posts
by 13 people.
Answer Snippets (Read the full thread at neogaf):
There's supposedly some good adventure games in this bundle so I'll check it out..
|
|
How can I get the classloader for a osgi bundle in eclipse equinox setup. Thanks, Suraj
Started by Null Pointer on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
However the Bundle interface exposes a loadClass() method and this would allow you to write a classloader that wraps the bundle API....
The short answer (certainly for OSGi 4.1, not sure of 4.2) is you can't get a bundle's classloader.
|
|
Hi,
I'd like to create another resource bundle to organize my Grails app. Grails provides a 'messages' resource bundle and I need to create a 'myApp' resource bundle.
How can I create a new resource bundle and read its properties with the 'g:message' ...
Started by Wickramben on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
No need to add them.
Found in the grails-app/i18n directory to the resource bundle automatically.
|
|
Where can I get the Groovy bundle for TextMate? I checked the TextMate subversion repository but it's not there. The Groovy site TextMate page references TextMate's missing Groovy bundle.
Started by Steve Kuo on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Place the tmbundle in the ~/Library/Application....
The best way to find and install bundles on Textmate is using GetBundles .
There's also a Grails bundle as well.
After a bit more searching it looks like the Groovy bundle moved to github.
|
|
I'm just getting started with OSGI development and am struggling to understand how best to handle dependant JARs.
i.e. if I'm creating a bundle the likelyhood is that I will need to use a few 3rd party JARs. When I create my bundle JAR to deploy to OSGI...
Started by William on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It is possible to embed....
OSGi itself is meant for modularization and you for the bundle in the SpringSource Enterprise Bundle Repository if they haven't already done the work for you.
I would almost always bundle each jar separately.
|
|
How can I add packages to a bundle's import from within code? I need it since I use libraries which rely on reflection and require other packages and I don't want to need to manually add those packages to MANIFEST.MF for each bundle I develop
Started by IttayD on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Another way would be using a bundle tracker and obtaining....
Your code is executed when the bundle is Active, therefore too late to add and inspecting the other bundles, you can let the bundles do that.
Resolved -> Active ).
|