Skip to content
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

Fix for issue 153 sun.misc Import-Package #235

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/AEMSupport.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
== What you need to run Grabbit.

* Supported AEM/CQ version per below
* One-time installation of a system Fragment Bundle is needed. It can be found link:https://bintray.com/artifact/download/twcable/aem/dependencies/Sun-Misc-Fragment-Bundle-1.0.0.zip[here]
* If running AEM 6.2+ with the AEM Deserialization Firewall enabled, link:https://bintray.com/twcable/aem/download_file?file_path=dependencies%2FGrabbit-Deserialization-Firewall-Configuration-1.0.zip[this package] is required in order
for Grabbit to work. If running the deserialization firewall with custom blacklist/whitelist rules, check out the package description to gather which additional paths will need to be considered.
* In Addition to the AEM Deserialization Firewall package, you would need to install link:https://bintray.com/artifact/download/twcable/aem/dependencies/Grabbit-Apache-Sling-Login-Whitelist-1.0.zip[this] to have the grabbit bundle be whitelisted with Apache Sling Login Admin.
Expand Down
2 changes: 1 addition & 1 deletion gradle/bundle.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jar.manifest {
instruction 'Import-Package', 'org.springframework.aop.scope; version="[3.1,4.0)"'
instruction 'Import-Package', 'org.springframework.scheduling.concurrent; version="[3.1,4.0)"'
instruction 'Import-Package', "org.aopalliance.aop;version=1.0.0"
instruction 'Import-Package', "sun.misc"
instruction 'Import-Package', "sun.misc;resolution:=optional"
instruction 'Import-Package', '*'

// export everything to OSGi except *.impl packages
Expand Down