|
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).
|
|
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 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/.
|
Ask your Facebook Friends
|
What is a .bundle file and how do I run it?
Started by flybywire on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
NOTE: Bundle files are....
Most bundle files support folders.
File Type: Mac OS X Application Plug-in
Bundle file or plug-in that adds extra features, custom printer filters, extensions for Dreamweaver, and additional effects in iMovie.
|
|
[edit 22/05/12] See post 50 for latest bundle [/edit]
Another one lol! Better than the new Gala IMO
http://groupees.com/bemine
Wasteland Angel
Sideway New York
Xotic
Beep
The Ball
I'm interested in Beep and Sideway and have none of the others so I'm in...
Started by target on
, 20 posts
by 6 people.
Answer Snippets (Read the full thread at thedigitalfix):
And we're go....
4 days to go now...
Add 'The Ball' to the two I wanted in my first post! .
I've upped my interest to 3 of the games in this Bundle.
bundles!
For the record, this Bundle is also superior to the just release new Royale.
|
|
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.
|
|
What's the correct way to pass a bundle to the activity that is being launched from the current one? Shared properties? TIA.
Started by alex on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use the Bundle from the Intent:
Bundle extras = myIntent.getExtras(); extras.put*(info);
Or an entire bundle:
myIntent.putExtras(myBundle);
Is this what you're looking for?
You have a few options:
1) Use the Bundle....
|
|
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 ).
|