-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about bundling ? #89
Comments
What is it doing instead? An empty jar? An exception? |
I have only the java class file from the src into the jar, and not all the class dependencies required by the static linking. |
I think we'll need to see where you modify the jar task. I bet it has to do with changes from #79. |
ok, i push my latest files, see the project in this branch into |
i can not reach the given repository, can't run a build. never used this mechanism to include the dependency, is it possible to include the dependencies like described here:
we are using the shadow plugin to embed our eclipse dependencies in our bundles. can provide some code if you want. |
Hi @hacki11 , strange that repository is not accessible, probably a mistake in the build, i check that today. The solution you propose take all jar and zip ip into one jar. In my case this answer is not possible because the jar is very very fat. "Static linking" is very different, during bundle phase the system put into jar only the java *.class needed during compilation of the plugin. see https://bnd.bndtools.org/instructions/conditionalpackage.html & https://blogs.paremus.com/2014/05/static-linking-in-osgi/ |
can confirm the behavior and brought it down to release 3.16.0. |
Hi
I'm upgrading the GenStar repository with latest version of goomph plugin 1.7.0, and i see something strange.
I have a specific way to bundle my sources after compilation, i use this bnd to create a manifest :
Normally this code generate a big Jar with all java classes statically linked when i run
gradle build
( effect of conditional Package option), but this is not the case.Any idea ? Some bugs ?
The text was updated successfully, but these errors were encountered: