INT-2697 - Remove Bundlor from build.gradle

For reference: https://jira.springsource.org/browse/INT-2697
This commit is contained in:
Gunnar Hillert
2013-02-07 10:45:46 -05:00
parent 88782b8a34
commit e66c16bb44
2 changed files with 1 additions and 447 deletions

View File

@@ -48,29 +48,6 @@ To generate IDEA metadata (.iml and .ipr files), do the following:
./gradlew idea
# OSGI Notes
1. Dependency on Third Party Bundles
Some adapters depend on third party libraries (bundles).
Spring hosts the Enterprise Bundle Repository (EBR) at
https://ebr.springsource.com/repository/app/, where you can download
many third-party JARs as valid OSGi bundles.
If a particular bundle is not available in Spring's EBR, there are tools
that can convert a regular JAR to a bundle JAR. One of them is Bundlor
http://www.springsource.org/bundlor which can auto-generate an OSGi
MANIFEST.MF as part of standard project lifecycle or simply convert a
non-bundle JAR to a bundle JAR.
2. Boot delegation
Some adapters depend on extension packages that are available to the boot
class loader. As a case in point, the Feed Adapter depends on
com.sun.syndication.feed. Since by default OSGi only loads java.* from the
boot class loader, other packages that must be loaded from the boot class
loader can therefore be specified with the
'org.osgi.framework.bootdelegation' System property.
For example:
org.osgi.framework.bootdelegation=com.sun.*,org.w3c.*. . . .
# Resources
For more information, please visit the Spring Integration website at: