Skip to content

Instantly share code, notes, and snippets.

@klcodanr
Last active August 24, 2021 01:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klcodanr/28385db0ce6df72be36a4f60b433a8ec to your computer and use it in GitHub Desktop.
Save klcodanr/28385db0ce6df72be36a4f60b433a8ec to your computer and use it in GitHub Desktop.
// Run in the AEM Groovy Console or similar
import org.osgi.framework.hooks.resolver.ResolverHookFactory;
reference = bundleContext.getServiceReference(ResolverHookFactory.class);
service = bundleContext.getService(reference);
classLoader = service.getClass().getClassLoader();
Properties loadProperties(String propName) {
def url = new URL(reference.getProperty(propName))
def conn = url.openConnection();
def properties = new Properties();
properties.load(conn.getInputStream())
return properties;
}
void renderPackageMappings(){
def properties = loadProperties("regions.properties")
def regions = new ArrayList<String>();
regions.addAll(properties.keySet());
regions.sort();
regions.each{ region ->
println "\t${region}:"
def packages = properties.get(region).split(",").sort();
packages.each{ pkg ->
println "\t\t${pkg}"
}
}
}
void renderBundleMappings() {
def featureRegions = loadProperties("features.properties");
def bundlesToFeatures = loadProperties("bundles.properties");
def bundles = new ArrayList<String>();
bundles.addAll(bundlesToFeatures.keySet());
bundles.sort();
bundles.each{bundle ->
println "Bundle: ${bundle}";
println "Regions:";
def regions = featureRegions.get(bundlesToFeatures.get(bundle));
if(regions != null) {
regions.split(',').each{ r ->
println "\t${r}"
}
}
println ""
}
}
println "Bundle to Regions\n"
renderBundleMappings()
println "\n\nRegion to Package Mappings\n"
renderPackageMappings();
bundleContext.ungetService(reference);
Bundle to Regions
Bundle: com.adobe.aem:com.adobe.aem.collaborationapi:1.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.aem:com.adobe.aem.graphql.api:0.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.aem:com.adobe.aem.graphql.impl:0.0.42
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.aem:com.adobe.aem.graphql.sites-api:0.0.30
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.aem:com.adobe.aem.graphql.sites-base:0.0.68
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.aem:com.adobe.aem.graphql.sling-adapter:0.1.32
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.aem:com.adobe.aem.repoapi:2.0.16
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.aem:com.adobe.aem.ui.preview:0.1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.aemfd.expeditor:aemfd-expeditor-utils-bundle:6.0.124
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.bp:bp-cloudservice:0.1.46
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.bp:bp-distribution:0.0.22
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.cdn:cdn-rewriter:2.2
Regions:
Bundle: com.adobe.cq.dam:content-fragment-models-ibiza-api:0.0.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dam-cfm-api:1.4.24
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dam-cfm-extensions:0.1.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dam-cfm-graphql:0.0.188
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dam-cfm-haf:1.1.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dam-cfm-headless:0.0.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dam-cfm-impl:0.12.190
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dam-processor-api:1.1.50
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dam-processor-dm:1.0.26
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dam-processor-nui:1.1.550
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dam-svg-handler:0.5.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dam-ui-models:2.0.16
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-delivery-api:1.3.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-delivery-internal-api:1.3.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dynamicmedia-api:1.1.22
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-dynamicmedia-core:1.1.112
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.dam:cq-scene7-imaging:1.6.160
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.inbox:cq-inbox-api:1.1.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.inbox:cq-inbox-ui:1.3.16
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.inbox:cq-inbox:1.3.28
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.media:cq-media-articles:5.10.2
Regions:
Bundle: com.adobe.cq.remotedam:cq-remotedam-api:0.9.18
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.remotedam:cq-remotedam-client-core:1.1.58
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.remotedam:cq-remotedam-commons:1.0.24
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.remotedam:cq-remotedam-server-core:1.2.26
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.sightly:cq-wcm-sightly-extension:1.7.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.smartcontent:core:0.3.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.wcm:com.adobe.aem.wcm.pwa:1.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.wcm:com.adobe.aem.wcm.seo.impl:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.wcm:com.adobe.aem.wcm.seo:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.wcm:com.adobe.cq.wcm.jobs.async:1.1.64
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq.wcm:cq-wcm-launches-core:5.14.38
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:adobeims.core:1.2.16
Regions:
global
Bundle: com.adobe.cq:cloud-config.components:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cloud-config.core:1.0.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cloud-config.ui:1.2.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.aem.wcm.site.manager:3.1.36
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.cq.editor:1.4.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.cq.export.json.impl:0.2.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.cq.export.json:0.2.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.cq.msm.ui:0.3.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.cq.projects.api:0.5.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.cq.projects.core:0.6.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.cq.projects.ui:0.5.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.cq.projects.wcm.core:0.5.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.cq.sites.ui:0.4.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.cq.ui.admin:1.2.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.cq.ui.commons:1.4.46
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:com.adobe.cq.wcm.style:1.1.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:core.wcm.components.core:2.17.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:core.wcm.components.extensions.amp:2.17.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-account:1.2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-address:1.4.4
Regions:
global
com.adobe.aem.deprecated
Bundle: com.adobe.cq:cq-analytics-integration:1.5.16
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-cloudservices-provisioning:1.2.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-content-insight:1.6.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-contexthub-commons:1.1.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-dam-index-builder:1.5.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-dam-mac-sync-helper:1.6.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-dam-mac-sync:1.5.34
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-dashboards:5.9.2
Regions:
global
Bundle: com.adobe.cq:cq-deserialization-firewall:1.0.26
Regions:
global
Bundle: com.adobe.cq:cq-dtm:0.5.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-experience-fragments-social:1.3.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-experience-fragments:1.3.44
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-experiencelog:1.5.34
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-gfx:1.6.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-healthcheck:1.4.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-history:5.12.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-launches-api:5.13.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-multisite-targeting:1.1.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-product-info-provider:6.6.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-ref-update-processor-api:1.0.4
Regions:
Bundle: com.adobe.cq:cq-ref-update-processor-impl:1.1.4
Regions:
Bundle: com.adobe.cq:cq-ref-update-processor-util:1.1.2
Regions:
Bundle: com.adobe.cq:cq-rest-sites:1.2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-scheduled-exporter:5.10.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-searchpromote-integration:5.12.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-security-hc:1.6.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-socialmedia-integration:1.3.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-target-integration:1.4.30
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:cq-targetrecommendations:1.4.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:dtm-reactor.core:1.2.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:dtm-reactor.ui:1.2.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:exp-jspel-resolver:6.0.124
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:ibiza-aiql-parser:0.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:ibiza-base:0.0.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:json-schema-parser:4.0.56
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:myspell:2.0.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:ups-integration:1.0.26
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:ups-profile-lookup:1.0.30
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.cq:ups-user-utils:1.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite.bundles:json:20090211_12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite.osgi.wrapper:com.adobe.granite.osgi.wrapper.guava:15.0.0-0002
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite.osgi.wrapper:com.adobe.granite.osgi.wrapper.markdownj:0.3.0-2.0.2b4-002
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite.toggle:com.adobe.granite.toggle.api:1.2.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite.toggle:com.adobe.granite.toggle.impl.static:1.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite.toggle:com.adobe.granite.toggle.impl:0.9.24
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:aem-api-metrics-registry-based-vault-addon:1.0.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:aem-api-metrics:2.6.62
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:aem-inventory-egress-proxy-diagnostics-addon:1.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.acp.platform:0.4.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.activitystreams:0.0.46
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.asset.api:2.0.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.asset.core:2.2.66
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.auth.authhandler:6.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.auth.cert:0.0.16
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.auth.ims:1.4.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.auth.oauth:1.7.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.auth.saml:1.0.36
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.auth.sso:0.0.28
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.bundles.hc.impl:1.0.42
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.cloudsettings.core:1.2.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.comments:1.0.34
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.compat-router:1.0.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.conf.ui.core:0.0.36
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.conf:1.0.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.confmgr:1.2.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.contexthub.commons:0.3.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.cors:1.0.18
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.crx-packagemgr:1.2.108
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.crxde-lite:1.1.70
Regions:
global
Bundle: com.adobe.granite:com.adobe.granite.crypto.config:0.0.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.crypto.extension:0.0.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.crypto.file:0.0.16
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.crypto.jcr:0.0.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.crypto.keystore:3.3.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.crypto:3.4.18
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.csrf:1.0.24
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.distribution.core:0.2.66
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.frags.impl:0.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.gibson:1.1.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.httpcache.core:1.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.i18n:5.5.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.infocollector:1.0.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.installer.factory.packages:1.0.18
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.jcrclustersupport:0.7.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.jetty.ssl:1.0.14
Regions:
global
Bundle: com.adobe.granite:com.adobe.granite.jmx.webconsole:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.jmx:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.jobs.async.ui.commons:1.0.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.jobs.async:1.1.28
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.license.http:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.license:1.5.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.logging:1.0.26
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.maintenance.core:1.3.46
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.maintenance.oak:1.0.54
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.metrics.knownerrors:0.0.18
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.monitoring.core:1.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.oauth.jwt:0.1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.oauth.server:1.1.28
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.omnisearch.core:1.0.100
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.operations.ui.core:0.0.64
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.optout:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.panic:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.poi:2.0.42
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.queries:1.0.82
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.references.core:1.1.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.replication.core:6.4.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.replication.hc.impl:1.0.30
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.repository.checker:1.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.repository.hc.impl:1.0.64
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.repository:1.6.146
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.requests.logging:1.0.22
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.resourceresolverhelper:1.0.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.resourcestatus:1.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.rest.api:1.1.26
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.rest.assets:1.0.60
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.scribe:1.3.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.security.installer:0.0.22
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.security.permissions:0.0.22
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.security.ui:1.0.70
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.security.user:0.4.68
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.socialgraph:0.1.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.socketio:1.0.4
Regions:
global
Bundle: com.adobe.granite:com.adobe.granite.startup:0.6.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.tagsoup:1.2.1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.taskmanagement.api:1.0.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.taskmanagement.core:1.0.72
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.taskmanagement.workflow:1.0.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.threaddump:1.0.36
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.timeline:1.0.26
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.translation.api:1.2.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.translation.connector.msft.core:1.4.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.translation.core:1.1.70
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.ui.clientlibs.compiler.less:1.1.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.ui.clientlibs.processor.gcc:1.0.18
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.ui.clientlibs:1.1.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.ui.commons:5.10.26
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.ui.tags:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.webconsole.plugins:1.0.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.workflow.api:1.0.46
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.workflow.console:1.1.22
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.workflow.core:2.1.58
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.adobe.granite.xssprotection:5.8.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:com.day.cq.widget:6.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:crx-auth-token:2.6.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.granite:ims-yaml-loader:2.1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.pdf:afe:3.0.596348
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.pdf:afml:3.0.595117
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.pdf:aglj40:1.5.698416.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.pdf:pdfcore:3.0.622277
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.pdf:pdfencryption_high:3.0.622277
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.pdf:pdfservices_extraction:3.0.622277
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.pdf:pdfservices_manipulation:3.0.622277
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.pdf:pdfservices_security:3.0.622277
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.pdf:rideau:3.0.552257
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.pdf:xfa:3.5.0.3240
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.reef.siren:siren-core:1.0.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.stock:stock-api:1.0.5
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.suitetech:com.adobe.suitetech.nativecomm:2.1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.xmp.schema:model:1.0.9
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.xmp.schema:rngparser:1.0.7
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.xmp.schema:service:2.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.xmp.worker:files.host:1.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.xmp.worker:files.native.fragment:jar:linux64:1.0.10
Regions:
Bundle: com.adobe.xmp.worker:files.native.fragment:jar:macosx:1.0.10
Regions:
Bundle: com.adobe.xmp.worker:files.native.fragment:jar:win:1.0.10
Regions:
Bundle: com.adobe.xmp:core:1.0.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.adobe.xmp:xmpcore:6.2.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.cedarsoftware:json-io:4.12.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons.osgi.wrapper:com.day.commons.osgi.wrapper.commons-httpclient:3.1.0.26
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons.osgi.wrapper:com.day.commons.osgi.wrapper.fop:1.16
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons.osgi.wrapper:com.day.commons.osgi.wrapper.simple-jndi:0.11.14.1.0010
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons:day-commons-diff:1.1.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons:day-commons-durbo:2.1.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons:day-commons-gfx:2.1.52
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons:day-commons-io:1.1.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons:day-commons-jrawio:1.5.0.006
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons:day-commons-jstl:1.2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons:day-commons-misc:1.1.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons:day-commons-text:1.1.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons:day.commons.datasource.jdbcpool:1.0.26
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.commons:day.commons.datasource.poolservice:1.0.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:adobe-dam-idsprint:0.5.16
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:adobe-xmp:5.13.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-annotation-print:0.3.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-api:6.1.88
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-archive:1.0.24
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-asset-sourcing:2.0.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-asset-usage:0.4.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-commons:5.13.174
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-core:5.13.302
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-download:1.0.52
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-entitlement:1.4.32
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-handler:5.13.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-indesign:5.13.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-similaritysearch:5.13.58
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-stock-integration:1.2.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-video:5.13.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-dam-word:5.13.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-scene7-api:5.13.94
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-scene7-core:5.13.330
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:cq-scene7-wsdl:1.4.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.dam:dam-webdav-support:1.5.8
Regions:
Bundle: com.day.cq.mcm:cq-mcm-campaign:1.4.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.mcm:cq-mcm-core:5.13.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.mcm:cq-mcm-emailprovider:1.4.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.mcm:cq-mcm-landingpage:1.4.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-command:1.2.34
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-msm-api:5.12.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-msm-commons:1.5.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-msm-core:5.13.64
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-msm-move-api:0.1.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-api:5.15.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-commons:5.12.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-content-sync:5.13.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-core:5.13.222
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-designimporter:1.7.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-emulator:5.8.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-foundation:5.13.40
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-mobile-api:5.11.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-mobile-core:5.11.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-mobile-qrcode:5.9.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-models-extension:1.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-notification:5.12.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-offline:5.10.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-resource-details:0.2.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-scripting-support:1.2.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-taglib:5.13.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-translation:1.6.92
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-undo:5.11.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-webservice-support:5.13.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-workflow-api:5.12.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.wcm:cq-wcm-workflow:5.12.36
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.workflow:cq-workflow-api:6.3.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.workflow:cq-workflow-console:6.2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq.workflow:cq-workflow-impl:6.3.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:com.adobe.cq.wcm.ui.components:1.2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-audit:6.3.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-chart:5.10.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-commons:5.12.16
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-compat-commons-auth:0.1.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-compat-runmode:0.4.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-connector:5.10.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-content-sync:5.13.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-licensebranding:6.5.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-mailer:5.4.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-notifcation-api:5.8.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-notifcation-impl:5.9.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-personalization:5.13.24
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-polling-importer:5.12.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-quickstart:jar:precompiled-scripts:6.6.0-SNAPSHOT
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-reporting:5.11.12
Regions:
global
Bundle: com.day.cq:cq-retriever:5.8.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-rewriter:5.13.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-search-ext:1.4.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-search-suggest:5.11.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-search:5.13.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-security-api:5.9.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-security:5.12.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-spellchecker:5.10.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-statistics:5.11.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-tagging:5.13.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:cq-widgets-ext:5.13.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:oak-compat-security-spi:1.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.cq:remote.content.renderer:2.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.day.crx:crx-api:2.6.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.fasterxml.jackson.core:jackson-annotations:2.11.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.fasterxml.jackson.core:jackson-core:2.11.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.fasterxml.jackson.core:jackson-databind:2.11.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.11.3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.github.jknack:handlebars:4.0.5
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.google.code.gson:gson:2.8.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.graphql-java:graphql-java:15.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.graphql-java:java-dataloader:2.2.3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.h2database:h2-mvstore:1.4.194
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: com.sun.mail:javax.mail:1.6.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: commons-codec:commons-codec:1.15
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: commons-collections:commons-collections:3.2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: commons-fileupload:commons-fileupload:1.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: commons-io:commons-io:2.8.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: commons-lang:commons-lang:2.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: io.dropwizard.metrics:metrics-core:3.2.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: joda-time:joda-time:2.9.1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.antlr:antlr4-runtime:4.7.1
Regions:
Bundle: org.apache.abdera:abdera-client:1.1.3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.abdera:abdera-core:1.1.3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.abdera:abdera-extensions-media:1.1.3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.abdera:abdera-extensions-opensearch:1.1.3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.abdera:abdera-i18n:1.1.3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.abdera:abdera-server:1.1.3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.aries.jmx:org.apache.aries.jmx.api:1.1.5
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.aries.jmx:org.apache.aries.jmx.core:1.1.5
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.aries.jmx:org.apache.aries.jmx.whiteboard:1.1.5
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.aries.transaction:org.apache.aries.transaction.manager:1.2.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.aries:org.apache.aries.util:1.1.1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.cocoon:cocoon-xml:2.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.commons:commons-collections4:4.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.commons:commons-compress:1.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.commons:commons-email:1.5
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.commons:commons-exec:1.3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.commons:commons-imaging:1.0-R1725432-B002
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.commons:commons-lang3:3.12.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.commons:commons-math:2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.cm.json:1.0.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.configadmin.plugin.interpolation:1.1.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.configadmin:1.9.22
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.converter:1.0.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.coordinator:1.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.eventadmin:1.6.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.healthcheck.api:2.0.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.healthcheck.core:2.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.healthcheck.generalchecks:2.0.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.healthcheck.webconsoleplugin:2.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.http.jetty:4.1.10
Regions:
global
Bundle: org.apache.felix:org.apache.felix.http.servlet-api:1.1.4
Regions:
global
Bundle: org.apache.felix:org.apache.felix.http.sslfilter:1.2.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.http.whiteboard:4.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.inventory:1.1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.jaas:1.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.log:1.2.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.metatype:1.2.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.rootcause:0.1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.scr:2.1.26
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.systemready:0.4.3-T20200317-2e56c35922
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.threaddump:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.webconsole.plugins.ds:2.1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.webconsole.plugins.event:1.1.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.webconsole.plugins.memoryusage:1.0.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.webconsole.plugins.packageadmin:1.0.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.felix:org.apache.felix.webconsole:4.6.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.geronimo.specs:geronimo-annotation_1.3_spec:1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.geronimo.specs:geronimo-atinject_1.0_spec:1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.geronimo.specs:geronimo-ws-metadata_2.0_spec:1.1.3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.httpcomponents:httpclient-osgi:4.5.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.httpcomponents:httpcore-osgi:4.4.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit.vault:org.apache.jackrabbit.vault:3.4.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:jackrabbit-data:2.20.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:jackrabbit-jcr-commons:2.20.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:jackrabbit-spi-commons:2.20.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:jackrabbit-spi:2.20.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:jackrabbit-webdav:2.20.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-api:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-auth-external:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-auth-ldap:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-authorization-cug:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-authorization-principalbased:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-blob-cloud-azure:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-blob-plugins:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-blob:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-commons:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-core-spi:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-core:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-jackrabbit-api:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-jcr:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-lucene:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-query-spi:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-search-elastic:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-security-spi:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-segment-azure:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-segment-remote:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-segment-tar:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-solr-osgi:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-store-composite:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-store-document:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.jackrabbit:oak-store-spi:1.40-T20210715153437-563b834
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.johnzon:johnzon-mapper:1.2.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.oltu.commons:org.apache.oltu.commons.encodedtoken:1.0.1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.oltu.commons:org.apache.oltu.commons.json:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.oltu.jose:org.apache.oltu.jose.jws:1.0.1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.oltu.oauth2:org.apache.oltu.oauth2.authzserver:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.oltu.oauth2:org.apache.oltu.oauth2.common:1.0.1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.oltu.oauth2:org.apache.oltu.oauth2.jwt:1.0.3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.oltu.oauth2:org.apache.oltu.oauth2.resourceserver:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.opennlp:opennlp-tools:1.9.3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.servicemix.bundles:org.apache.servicemix.bundles.abdera-parser:1.1.3_2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.servicemix.bundles:org.apache.servicemix.bundles.dom4j:2.1.3_1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.servicemix.bundles:org.apache.servicemix.bundles.jaxb-runtime:2.3.2_2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.servicemix.bundles:org.apache.servicemix.bundles.jdom:1.1_4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.servicemix.bundles:org.apache.servicemix.bundles.rhino:1.7.7.1_1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.servicemix.bundles:org.apache.servicemix.bundles.saaj-impl:1.3.23_2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.servicemix.specs:org.apache.servicemix.specs.jaxb-api-2.3:2.3_3
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.servicemix.specs:org.apache.servicemix.specs.jaxws-api-2.2:2.9.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.servicemix.specs:org.apache.servicemix.specs.saaj-api-1.3:2.8.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.adapter:2.1.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.api:2.23.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.atom.taglib:0.9.0-R988585
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.auth.core:1.5.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.bundleresource.impl:2.3.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.caconfig.api:1.2.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.caconfig.impl:1.5.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.caconfig.spi:1.3.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.classloader:1.4.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.compiler:2.4.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.contentdetection:1.0.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.fsclassloader:1.0.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.html:1.1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.johnzon:1.2.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.json:2.0.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.log.webconsole:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.log:5.1.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.logservice:1.1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.metrics-rrd4j:1.0.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.metrics:1.2.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.mime:2.2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.osgi:2.4.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.scheduler:2.7.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.commons.threads:3.2.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.discovery.api:1.0.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.discovery.base:2.0.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.discovery.commons:1.0.24
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.discovery.oak:1.2.34
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.discovery.support:1.0.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.distribution.api:0.5.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.distribution.core:0.4.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.engine:2.7.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.event.dea:1.1.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.event:4.2.22
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.extensions.webconsolesecurityprovider:1.2.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.feature.apiregions:1.1.8
Regions:
Bundle: org.apache.sling:org.apache.sling.feature.extension.unpack:0.1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.feature:1.2.22
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.featureflags:1.2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.graphql.core:0.0.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.graphql.schema.aggregator:0.0.1-T20210714234836-a8c8359e
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.hapi:1.1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.hc.api:1.0.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.i18n:2.5.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.installer.console:1.1.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.installer.core:3.11.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.installer.factory.configuration:1.3.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.installer.factory.feature:0.5.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.installer.provider.file:1.2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.installer.provider.jcr:3.2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.javax.activation:0.2.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.jcr.api:2.4.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.jcr.base:3.1.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.jcr.contentloader:2.3.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.jcr.davex:1.3.10
Regions:
global
Bundle: org.apache.sling:org.apache.sling.jcr.jcr-wrapper:2.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.jcr.registration:1.0.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.jcr.repoinit:1.1.36
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.jcr.resource:3.0.22
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.jcr.resourcesecurity:1.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.jcr.webdav:2.3.8
Regions:
global
Bundle: org.apache.sling:org.apache.sling.jmx.provider:1.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.launchpad.installer:1.2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.metrics.osgi.collector:0.1.0-T20200317112827-d4c51d6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.metrics.osgi.consumers:0.1.0-T20200317112827-d4c51d6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.models.api:1.3.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.models.impl:1.4.16
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.models.jacksonexporter:1.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.provisioning.model:1.8.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.repoinit.parser:1.6.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.resource.inventory:1.0.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.resourceaccesssecurity:1.0.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.resourcecollection:1.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.resourcemerger:1.3.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.resourceresolver:1.7.8
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.rewriter:1.2.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.api:2.2.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.core:2.3.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.el-api:1.0.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.java:2.1.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.javascript:3.1.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.jsp-api:1.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.jsp.taglib:2.4.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.jsp:2.5.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.jst:2.0.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.sightly.compiler.java:1.2.2-1.4.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.sightly.compiler:1.2.12-1.4.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.sightly.js.provider:1.2.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.sightly.runtime:1.2.4-1.4.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.sightly:1.4.8-1.4.0
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.scripting.spi:1.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.security:1.1.20
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.serviceusermapper:1.5.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.servlet-helpers:1.4.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.servlets.get:2.1.44
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.servlets.post:2.4.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.servlets.resolver:2.7.14
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.settings:1.3.10
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.sitemap:1.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.startupfilter.disabler:0.0.1-Rev1758544
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.startupfilter:0.0.1-Rev1764485
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.tenant:1.1.4
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.tracer:1.0.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.sling:org.apache.sling.xss:2.2.12
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.tika:tika-core:1.24.1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.apache.tika:tika-parsers:1.24.1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.ehcache:ehcache:3.8.1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.jvnet.staxex:stax-ex:1.7.6
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.kohsuke.rngom:rngom:20120531
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.mongodb:mongo-java-driver:3.12.7
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.osgi:org.osgi.util.function:1.1.0.1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.osgi:org.osgi.util.promise:1.1.1
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.reactivestreams:reactive-streams:1.0.2
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.slf4j:jcl-over-slf4j:1.7.30
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.slf4j:log4j-over-slf4j:1.7.30
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.slf4j:slf4j-api:1.7.30
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Bundle: org.yaml:snakeyaml:1.28
Regions:
global
com.adobe.aem.deprecated
com.adobe.aem.internal
Region to Package Mappings
com.adobe.aem.deprecated:
com.adobe.agl.impl.data.icudt40b
com.adobe.agl.impl.data.icudt40b.brkitr
com.adobe.agl.impl.data.icudt40b.coll
com.adobe.agl.impl.data.icudt40b.rbnf
com.adobe.agl.impl.data.icudt40b.translit
com.adobe.cq.address.api
com.adobe.cq.address.api.location
com.adobe.cq.dam.dm.internalapi.image_server
com.adobe.dam.print.ids.utils
com.adobe.granite.crypto.spi
com.adobe.granite.crypto.spi.base
com.adobe.internal.afml
com.adobe.internal.agm
com.adobe.internal.pdf.tika
com.adobe.internal.pdftoolkit.color
com.adobe.internal.pdftoolkit.core.encryption
com.adobe.internal.pdftoolkit.core.encryption.impl
com.adobe.internal.pdftoolkit.core.traverser
com.adobe.internal.pdftoolkit.graphicsDOM
com.adobe.internal.pdftoolkit.graphicsDOM.shading
com.adobe.internal.pdftoolkit.graphicsDOM.utils
com.adobe.internal.pdftoolkit.image
com.adobe.internal.pdftoolkit.legacy.services.ap.es2
com.adobe.internal.pdftoolkit.legacy.services.ap.es3
com.adobe.internal.pdftoolkit.pdf.content
com.adobe.internal.pdftoolkit.pdf.content.processor
com.adobe.internal.pdftoolkit.pdf.content.processor.base14fontwidths
com.adobe.internal.pdftoolkit.pdf.contentmodify
com.adobe.internal.pdftoolkit.pdf.contentmodify.impl
com.adobe.internal.pdftoolkit.pdf.digsig
com.adobe.internal.pdftoolkit.pdf.document
com.adobe.internal.pdftoolkit.pdf.document.listener
com.adobe.internal.pdftoolkit.pdf.document.permissionhandlers
com.adobe.internal.pdftoolkit.pdf.filters
com.adobe.internal.pdftoolkit.pdf.graphics
com.adobe.internal.pdftoolkit.pdf.graphics.colorspaces
com.adobe.internal.pdftoolkit.pdf.graphics.colorspaces.cmykresources
com.adobe.internal.pdftoolkit.pdf.graphics.font
com.adobe.internal.pdftoolkit.pdf.graphics.font.encodings
com.adobe.internal.pdftoolkit.pdf.graphics.font.impl
com.adobe.internal.pdftoolkit.pdf.graphics.impl
com.adobe.internal.pdftoolkit.pdf.graphics.optionalcontent
com.adobe.internal.pdftoolkit.pdf.graphics.patterns
com.adobe.internal.pdftoolkit.pdf.graphics.shading
com.adobe.internal.pdftoolkit.pdf.graphics.xobject
com.adobe.internal.pdftoolkit.pdf.impl
com.adobe.internal.pdftoolkit.pdf.inlineimage
com.adobe.internal.pdftoolkit.pdf.interactive
com.adobe.internal.pdftoolkit.pdf.interactive.action
com.adobe.internal.pdftoolkit.pdf.interactive.annotation
com.adobe.internal.pdftoolkit.pdf.interactive.forms
com.adobe.internal.pdftoolkit.pdf.interactive.forms.impl
com.adobe.internal.pdftoolkit.pdf.interactive.geospatial
com.adobe.internal.pdftoolkit.pdf.interactive.markedcontent
com.adobe.internal.pdftoolkit.pdf.interactive.navigation
com.adobe.internal.pdftoolkit.pdf.interactive.navigation.collection
com.adobe.internal.pdftoolkit.pdf.interactive.readerrequirements
com.adobe.internal.pdftoolkit.pdf.interactive.requirement
com.adobe.internal.pdftoolkit.pdf.interchange
com.adobe.internal.pdftoolkit.pdf.interchange.documentparts
com.adobe.internal.pdftoolkit.pdf.interchange.metadata
com.adobe.internal.pdftoolkit.pdf.interchange.prepress
com.adobe.internal.pdftoolkit.pdf.interchange.structure
com.adobe.internal.pdftoolkit.pdf.multimedia
com.adobe.internal.pdftoolkit.pdf.page
com.adobe.internal.pdftoolkit.pdf.pieceinfo.compoundtype
com.adobe.internal.pdftoolkit.pdf.pieceinfo.editablepdf
com.adobe.internal.pdftoolkit.pdf.rendering
com.adobe.internal.pdftoolkit.pdf.transparency
com.adobe.internal.pdftoolkit.pdf.utils
com.adobe.internal.pdftoolkit.services.Jpeg2000
com.adobe.internal.pdftoolkit.services.ap
com.adobe.internal.pdftoolkit.services.ap.annot
com.adobe.internal.pdftoolkit.services.ap.extension
com.adobe.internal.pdftoolkit.services.ap.impl
com.adobe.internal.pdftoolkit.services.ap.spi
com.adobe.internal.pdftoolkit.services.digsig
com.adobe.internal.pdftoolkit.services.digsig.cryptoprovider
com.adobe.internal.pdftoolkit.services.digsig.docmodanalysis
com.adobe.internal.pdftoolkit.services.digsig.spi
com.adobe.internal.pdftoolkit.services.fdf
com.adobe.internal.pdftoolkit.services.fontresources
com.adobe.internal.pdftoolkit.services.fontresources.subsetting
com.adobe.internal.pdftoolkit.services.formflattener
com.adobe.internal.pdftoolkit.services.forms
com.adobe.internal.pdftoolkit.services.imageconversion
com.adobe.internal.pdftoolkit.services.interchange.structure
com.adobe.internal.pdftoolkit.services.javascript
com.adobe.internal.pdftoolkit.services.javascript.extension
com.adobe.internal.pdftoolkit.services.manipulations
com.adobe.internal.pdftoolkit.services.manipulations.impl
com.adobe.internal.pdftoolkit.services.optimizer
com.adobe.internal.pdftoolkit.services.optionalcontent
com.adobe.internal.pdftoolkit.services.optionalcontent.impl
com.adobe.internal.pdftoolkit.services.pdfParser
com.adobe.internal.pdftoolkit.services.pdfa
com.adobe.internal.pdftoolkit.services.pdfa.error
com.adobe.internal.pdftoolkit.services.pdfa2
com.adobe.internal.pdftoolkit.services.pdfa2.error
com.adobe.internal.pdftoolkit.services.pdfa2.error.codes
com.adobe.internal.pdftoolkit.services.pdfa3
com.adobe.internal.pdftoolkit.services.pdfport
com.adobe.internal.pdftoolkit.services.permissions
com.adobe.internal.pdftoolkit.services.permissions.impl
com.adobe.internal.pdftoolkit.services.portfolio
com.adobe.internal.pdftoolkit.services.rasterizer
com.adobe.internal.pdftoolkit.services.rasterizer.impl
com.adobe.internal.pdftoolkit.services.rcg
com.adobe.internal.pdftoolkit.services.rcg.impl
com.adobe.internal.pdftoolkit.services.readingorder
com.adobe.internal.pdftoolkit.services.redaction
com.adobe.internal.pdftoolkit.services.redaction.handler
com.adobe.internal.pdftoolkit.services.sanitization
com.adobe.internal.pdftoolkit.services.security
com.adobe.internal.pdftoolkit.services.swf
com.adobe.internal.pdftoolkit.services.textextraction
com.adobe.internal.pdftoolkit.services.textextraction.impl
com.adobe.internal.pdftoolkit.services.xbm
com.adobe.internal.pdftoolkit.services.xdp
com.adobe.internal.pdftoolkit.services.xfa
com.adobe.internal.pdftoolkit.services.xfa.form
com.adobe.internal.pdftoolkit.services.xfatext
com.adobe.internal.pdftoolkit.services.xfdf
com.adobe.internal.pdftoolkit.services.xmp
com.adobe.internal.pdftoolkit.services.xobjhandler
com.adobe.internal.pdftoolkit.xml
com.adobe.internal.util.base64
com.adobe.internal.xmp.utils
com.adobe.octopus.extract
com.adobe.xmp.worker.files
com.day.cq.analytics.sitecatalyst.rsmerger
com.day.cq.dam.api.reporting
com.day.cq.dam.api.s7dam.jobs
com.day.cq.dam.api.s7dam.omnisearch
com.day.cq.dam.api.s7dam.scene7
com.day.cq.dam.entitlement.api
com.day.cq.dam.handler.standard.epub
com.day.cq.dam.handler.standard.keynote
com.day.cq.dam.handler.standard.mp3
com.day.cq.dam.handler.standard.msoffice
com.day.cq.dam.handler.standard.msoffice.wmf
com.day.cq.dam.handler.standard.ooxml
com.day.cq.dam.handler.standard.pdf
com.day.cq.dam.handler.standard.pict
com.day.cq.dam.handler.standard.ps
com.day.cq.dam.handler.standard.psd
com.day.cq.dam.handler.standard.zip
com.day.cq.dam.scene7
com.day.cq.dam.scene7.api.net
com.day.cq.dam.word.extraction
com.day.cq.dam.word.process
com.day.cq.mcm.emailprovider.impl.types
com.day.cq.searchpromote
com.day.cq.searchpromote.xml
com.day.cq.searchpromote.xml.form
com.day.cq.searchpromote.xml.result
com.day.crx.core.cluster
com.day.crx.packaging
com.day.crx.packaging.gfx
com.day.crx.query
com.day.crx.sling.server.jmx
com.day.durbo
com.day.durbo.io
com.day.imageio.plugins
com.day.io
com.day.io.disk
com.day.io.file
com.google.zxing
com.google.zxing.common
com.google.zxing.common.reedsolomon
com.google.zxing.qrcode.decoder
com.google.zxing.qrcode.encoder
opennlp.tools.doccat
opennlp.tools.entitylinker
opennlp.tools.formats
opennlp.tools.formats.ad
opennlp.tools.formats.brat
opennlp.tools.formats.convert
opennlp.tools.formats.frenchtreebank
opennlp.tools.formats.muc
opennlp.tools.formats.ontonotes
opennlp.tools.lemmatizer
opennlp.tools.parser
opennlp.tools.parser.chunking
opennlp.tools.parser.lang.en
opennlp.tools.parser.lang.es
opennlp.tools.parser.treeinsert
opennlp.tools.sentdetect
opennlp.tools.sentdetect.lang
opennlp.tools.sentdetect.lang.th
opennlp.tools.stemmer
opennlp.tools.stemmer.snowball
opennlp.tools.tokenize.lang.en
org.apache.abdera.ext.opensearch
org.apache.abdera.ext.opensearch.model
org.apache.abdera.ext.opensearch.server
org.apache.abdera.ext.opensearch.server.impl
org.apache.abdera.ext.opensearch.server.processors
org.apache.abdera.i18n.iri.data
org.apache.abdera.i18n.lang
org.apache.abdera.i18n.templates
org.apache.abdera.i18n.unicode.data
org.apache.abdera.parser.stax
org.apache.abdera.parser.stax.util
org.apache.abdera.protocol
org.apache.abdera.protocol.client
org.apache.abdera.protocol.client.cache
org.apache.abdera.protocol.client.util
org.apache.abdera.protocol.error
org.apache.abdera.protocol.server
org.apache.abdera.protocol.server.context
org.apache.abdera.protocol.server.filters
org.apache.abdera.protocol.server.impl
org.apache.abdera.protocol.server.multipart
org.apache.abdera.protocol.server.processors
org.apache.abdera.protocol.server.provider.basic
org.apache.abdera.protocol.server.provider.managed
org.apache.abdera.protocol.server.servlet
org.apache.abdera.protocol.util
org.apache.abdera.util.filter
org.apache.aries.jmx.codec
org.apache.commons.exec.environment
org.apache.commons.exec.launcher
org.apache.commons.exec.util
org.apache.commons.imaging.color
org.apache.commons.imaging.common
org.apache.commons.imaging.common.itu_t4
org.apache.commons.imaging.common.mylzw
org.apache.commons.imaging.formats.bmp
org.apache.commons.imaging.formats.dcx
org.apache.commons.imaging.formats.gif
org.apache.commons.imaging.formats.icns
org.apache.commons.imaging.formats.ico
org.apache.commons.imaging.formats.jpeg
org.apache.commons.imaging.formats.jpeg.decoder
org.apache.commons.imaging.formats.jpeg.exif
org.apache.commons.imaging.formats.jpeg.iptc
org.apache.commons.imaging.formats.jpeg.segments
org.apache.commons.imaging.formats.jpeg.xmp
org.apache.commons.imaging.formats.pcx
org.apache.commons.imaging.formats.png
org.apache.commons.imaging.formats.png.chunks
org.apache.commons.imaging.formats.png.scanlinefilters
org.apache.commons.imaging.formats.png.transparencyfilters
org.apache.commons.imaging.formats.pnm
org.apache.commons.imaging.formats.psd
org.apache.commons.imaging.formats.psd.dataparsers
org.apache.commons.imaging.formats.psd.datareaders
org.apache.commons.imaging.formats.rgbe
org.apache.commons.imaging.formats.tiff
org.apache.commons.imaging.formats.tiff.constants
org.apache.commons.imaging.formats.tiff.datareaders
org.apache.commons.imaging.formats.tiff.fieldtypes
org.apache.commons.imaging.formats.tiff.photometricinterpreters
org.apache.commons.imaging.formats.tiff.taginfos
org.apache.commons.imaging.formats.tiff.write
org.apache.commons.imaging.formats.wbmp
org.apache.commons.imaging.formats.xbm
org.apache.commons.imaging.formats.xpm
org.apache.commons.imaging.icc
org.apache.commons.imaging.palette
org.apache.commons.imaging.util
org.apache.sling.atom.taglib
org.apache.sling.atom.taglib.media
org.apache.sling.startupfilter
org.h2.mvstore
org.h2.mvstore.rtree
org.h2.mvstore.type
org.openxmlformats.schemas.drawingml.x2006.chart.impl
org.openxmlformats.schemas.drawingml.x2006.main.impl
org.openxmlformats.schemas.drawingml.x2006.picture.impl
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl
org.openxmlformats.schemas.drawingml.x2006.wordprocessingDrawing.impl
org.openxmlformats.schemas.officeDocument.x2006.customProperties.impl
org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.impl
org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.impl
org.openxmlformats.schemas.officeDocument.x2006.relationships.impl
org.openxmlformats.schemas.presentationml.x2006.main.impl
org.openxmlformats.schemas.spreadsheetml.x2006.main.impl
org.openxmlformats.schemas.wordprocessingml.x2006.main.impl
org.openxmlformats.schemas.xpackage.x2006.contentTypes
org.openxmlformats.schemas.xpackage.x2006.contentTypes.impl
org.openxmlformats.schemas.xpackage.x2006.digitalSignature
org.openxmlformats.schemas.xpackage.x2006.digitalSignature.impl
org.openxmlformats.schemas.xpackage.x2006.metadata.coreProperties
org.openxmlformats.schemas.xpackage.x2006.metadata.coreProperties.impl
org.openxmlformats.schemas.xpackage.x2006.relationships
org.openxmlformats.schemas.xpackage.x2006.relationships.impl
resources
com.adobe.aem.internal:
com.adobe.aem.graphql.sites.ui.admin
com.adobe.aem.ui.preview
com.adobe.aem.ui.preview.rendercondition
com.adobe.aem.wcm.site.manager.config
com.adobe.aem.wcm.site.manager.constants
com.adobe.aem.wcm.site.manager.wizard
com.adobe.cq.assetcompute.api
com.adobe.cq.assetcompute.api.event
com.adobe.cq.assetcompute.api.upload
com.adobe.cq.cloudconfig.components.scripttags
com.adobe.cq.cloudconfig.core
com.adobe.cq.cloudconfig.ui
com.adobe.cq.cloudconfig.ui.commons
com.adobe.cq.contexthub.models
com.adobe.cq.dam.archive.api
com.adobe.cq.dam.bp.cloudconfig
com.adobe.cq.dam.bp.distribution.status
com.adobe.cq.dam.cfm.exported
com.adobe.cq.dam.cfm.extensions.changes
com.adobe.cq.dam.cfm.extensions.plugins
com.adobe.cq.dam.cfm.graphql.extensions.ui
com.adobe.cq.dam.cfm.headless.ui
com.adobe.cq.dam.cfm.ui
com.adobe.cq.dam.dm.delivery.api
com.adobe.cq.dam.dm.icc.api
com.adobe.cq.dam.dm.internalapi.tools
com.adobe.cq.dam.dm.process.api
com.adobe.cq.dam.mac.sync.helper.metrics
com.adobe.cq.dam.mac.sync.helper.metricstrackercache
com.adobe.cq.dam.processor.api
com.adobe.cq.dam.processor.api.assetimporter
com.adobe.cq.dam.ui.model.multipath
com.adobe.cq.dam.ui.model.properties
com.adobe.cq.dam.ui.model.schema
com.adobe.cq.dam.ui.model.search
com.adobe.cq.dtm.reactor
com.adobe.cq.dtm.reactor.components.scripttag
com.adobe.cq.dtm.reactor.ui
com.adobe.cq.editor.model
com.adobe.cq.editor.model.asset.mapping
com.adobe.cq.editor.model.inplaceediting.config
com.adobe.cq.expresolver.api
com.adobe.cq.expresolver.defaultmappers
com.adobe.cq.inbox.ui.column.manager
com.adobe.cq.inbox.ui.column.rendition
com.adobe.cq.inbox.ui.inboxsharing
com.adobe.cq.jsonschema.parser
com.adobe.cq.jsonschema.parser.servlets
com.adobe.cq.msm.ui.util
com.adobe.cq.projects.ui
com.adobe.cq.remotedam.config
com.adobe.cq.remotedam.config.site
com.adobe.cq.remotedam.server.events
com.adobe.cq.remotedam.server.remoterefs.entities
com.adobe.cq.remotedam.server.remoterefs.provider
com.adobe.cq.sites.ui.tools
com.adobe.cq.socialmedia
com.adobe.cq.ui.admin.siteadmin.components.strategy
com.adobe.cq.ui.admin.siteadmin.components.ui
com.adobe.cq.ui.commons.admin.views
com.adobe.cq.ui.wcm.commons
com.adobe.cq.wcm.launches.helper.internal
com.adobe.cq.wcm.translation.ui.models.cloudservices
com.adobe.cq.wcm.translation.ui.utils
com.adobe.cq.wcm.ui.components.container.service
com.adobe.cq.xf.ui
com.adobe.granite.analyzer
com.adobe.granite.analyzer.base
com.adobe.granite.analyzer.base.inspection
com.adobe.granite.analyzer.base.type.safe.properties
com.adobe.granite.compatrouter
com.adobe.granite.conf.commons
com.adobe.granite.conf.extension
com.adobe.granite.conf.ui.core.model
com.adobe.granite.ims.yamlloader
com.adobe.granite.jobs.async
com.adobe.granite.jobs.async.commons
com.adobe.granite.jobs.async.notification
com.adobe.granite.jobs.async.notification.email
com.adobe.granite.jobs.async.ui.commons.asyncbarricade
com.adobe.granite.license.provider
com.adobe.granite.panic
com.adobe.granite.rest.assets
com.adobe.granite.security.authorization
com.adobe.granite.security.user.ui
com.adobe.granite.toggle.api
com.adobe.granite.toggle.api.dev
com.adobe.granite.toggle.api.monitor
com.adobe.granite.workflow.console.users
com.adobe.granite.workflow.console.validation
com.adobe.granite.workflow.datatype
com.adobe.granite.workflow.datatype.registry
com.adobe.granite.workflow.inboxshare
com.adobe.stock.enums
com.codahale.metrics
com.day.cq.analytics.sitecatalyst.config
com.day.cq.analytics.testandtarget.config
com.day.cq.dam.api.asset.property.operation
com.day.cq.dam.api.processingstate.property
com.day.cq.dam.api.processingstate.provider
com.day.cq.dam.api.processingstate.updater
com.day.cq.dam.api.s7dam.internal
com.day.cq.dam.api.smartcrop
com.day.cq.dam.api.workflow
com.day.cq.dam.asset.api
com.day.cq.dam.asset.sourcing.utils
com.day.cq.dam.collection.api
com.day.cq.dam.commons.deployment
com.day.cq.dam.core.process
com.day.cq.dam.directbinary.api
com.day.cq.dam.rendition.api
com.day.cq.dam.scene7.api.adapter
com.day.cq.dam.scene7.api.internal
com.day.cq.dam.similaritysearch
com.day.cq.dam.similaritysearch.model
com.day.cq.dam.stock.integration
com.day.cq.extwidget
com.day.cq.mcm.campaign.importer
com.day.cq.mcm.core
com.day.cq.mcm.emailprovider.service
com.day.cq.mcm.emailprovider.util
com.day.cq.mcm.landingpage.leadform.creator
com.day.cq.mcm.landingpage.parser.taghandlers.cta
com.day.cq.mcm.landingpage.parser.taghandlers.mbox
com.day.cq.wcm.commons.search
com.day.cq.wcm.core.reference
com.day.cq.wcm.msm.move.api
com.day.cq.wcm.msm.spi.internal
com.day.cq.wcm.offline
com.fasterxml.jackson.dataformat.yaml
com.petebevin.markdown
org.antlr.v4.runtime
org.antlr.v4.runtime.atn
org.antlr.v4.runtime.dfa
org.antlr.v4.runtime.misc
org.antlr.v4.runtime.tree
org.antlr.v4.runtime.tree.pattern
org.antlr.v4.runtime.tree.xpath
org.apache.felix.cm.json
org.apache.jackrabbit.oak.plugins.blob.datastore.directaccess
org.apache.jackrabbit.oak.segment.remote
org.apache.jackrabbit.oak.segment.spi
org.apache.jackrabbit.oak.segment.spi.monitor
org.apache.jackrabbit.oak.segment.spi.persistence
org.apache.johnzon.core
org.apache.johnzon.core.util
org.apache.johnzon.mapper
org.apache.sling.api.resource.type
org.apache.sling.commons.compiler.source
org.apache.sling.commons.fsclassloader
org.apache.sling.discovery.base.commons
org.apache.sling.discovery.base.connectors
org.apache.sling.discovery.base.connectors.announcement
org.apache.sling.discovery.base.connectors.ping
org.apache.sling.discovery.base.connectors.ping.wl
org.apache.sling.feature
org.apache.sling.feature.builder
org.apache.sling.feature.io
org.apache.sling.feature.io.archive
org.apache.sling.feature.io.artifacts
org.apache.sling.feature.io.artifacts.spi
org.apache.sling.feature.io.json
org.apache.sling.installer.api
org.apache.sling.installer.api.event
org.apache.sling.installer.api.info
org.apache.sling.installer.api.jmx
org.apache.sling.installer.api.serializer
org.apache.sling.installer.api.tasks
org.apache.sling.metrics.osgi
org.apache.sling.repoinit.parser
org.apache.sling.scripting.javascript
org.apache.sling.scripting.jsp.jasper.runtime
org.apache.sling.scripting.spi.bundle
org.apache.sling.servlethelpers
org.apache.sling.servlethelpers.internalrequests
org.ccil.cowan.tagsoup.jaxp
org.ehcache
org.yaml.snakeyaml
org.yaml.snakeyaml.constructor
org.yaml.snakeyaml.emitter
org.yaml.snakeyaml.error
org.yaml.snakeyaml.events
org.yaml.snakeyaml.introspector
org.yaml.snakeyaml.nodes
org.yaml.snakeyaml.parser
org.yaml.snakeyaml.reader
org.yaml.snakeyaml.representer
org.yaml.snakeyaml.resolver
global:
ch.qos.logback.classic
ch.qos.logback.classic.boolex
ch.qos.logback.classic.db
ch.qos.logback.classic.db.names
ch.qos.logback.classic.db.script
ch.qos.logback.classic.encoder
ch.qos.logback.classic.filter
ch.qos.logback.classic.gaffer
ch.qos.logback.classic.helpers
ch.qos.logback.classic.html
ch.qos.logback.classic.jmx
ch.qos.logback.classic.joran
ch.qos.logback.classic.joran.action
ch.qos.logback.classic.jul
ch.qos.logback.classic.layout
ch.qos.logback.classic.log4j
ch.qos.logback.classic.net
ch.qos.logback.classic.net.server
ch.qos.logback.classic.pattern
ch.qos.logback.classic.pattern.color
ch.qos.logback.classic.selector
ch.qos.logback.classic.selector.servlet
ch.qos.logback.classic.servlet
ch.qos.logback.classic.sift
ch.qos.logback.classic.spi
ch.qos.logback.classic.turbo
ch.qos.logback.classic.util
ch.qos.logback.core
ch.qos.logback.core.boolex
ch.qos.logback.core.db
ch.qos.logback.core.db.dialect
ch.qos.logback.core.encoder
ch.qos.logback.core.filter
ch.qos.logback.core.helpers
ch.qos.logback.core.hook
ch.qos.logback.core.html
ch.qos.logback.core.joran
ch.qos.logback.core.joran.action
ch.qos.logback.core.joran.conditional
ch.qos.logback.core.joran.event
ch.qos.logback.core.joran.event.stax
ch.qos.logback.core.joran.node
ch.qos.logback.core.joran.spi
ch.qos.logback.core.joran.util
ch.qos.logback.core.joran.util.beans
ch.qos.logback.core.layout
ch.qos.logback.core.net
ch.qos.logback.core.net.server
ch.qos.logback.core.net.ssl
ch.qos.logback.core.pattern
ch.qos.logback.core.pattern.color
ch.qos.logback.core.pattern.parser
ch.qos.logback.core.pattern.util
ch.qos.logback.core.property
ch.qos.logback.core.read
ch.qos.logback.core.recovery
ch.qos.logback.core.rolling
ch.qos.logback.core.rolling.helper
ch.qos.logback.core.sift
ch.qos.logback.core.spi
ch.qos.logback.core.status
ch.qos.logback.core.subst
ch.qos.logback.core.util
ch.randelshofer.io
ch.randelshofer.media.jpeg
com.adobe.aem.wcm.seo
com.adobe.aem.wcm.seo.localization
com.adobe.aem.wcm.seo.sitemap
com.adobe.aemfd.expeditor.service
com.adobe.agl.charset
com.adobe.agl.impl
com.adobe.agl.lang
com.adobe.agl.math
com.adobe.agl.text
com.adobe.agl.util
com.adobe.cq.account.api
com.adobe.cq.adobeims.imsprofile
com.adobe.cq.cloudservices.provisioning
com.adobe.cq.contentinsight
com.adobe.cq.dam.cfm
com.adobe.cq.dam.cfm.content
com.adobe.cq.dam.cfm.converter
com.adobe.cq.dam.cfm.extensions
com.adobe.cq.dam.download.api
com.adobe.cq.dam.download.spi
com.adobe.cq.dam.index.bootstrap
com.adobe.cq.dam.index.builder
com.adobe.cq.dam.index.builder.api
com.adobe.cq.dam.index.helper
com.adobe.cq.dam.mac.sync.api
com.adobe.cq.dam.mac.sync.helper
com.adobe.cq.dashboards
com.adobe.cq.deserfw.api
com.adobe.cq.experiencelog
com.adobe.cq.export.json
com.adobe.cq.export.json.hierarchy
com.adobe.cq.export.json.hierarchy.type
com.adobe.cq.gfx
com.adobe.cq.history.api
com.adobe.cq.history.api.timeline
com.adobe.cq.history.filter
com.adobe.cq.history.utils
com.adobe.cq.inbox.api
com.adobe.cq.inbox.api.preferences
com.adobe.cq.inbox.api.preferences.domain
com.adobe.cq.inbox.api.preferences.domain.outofoffice
com.adobe.cq.inbox.api.preferences.domain.share
com.adobe.cq.inbox.api.preferences.domain.view
com.adobe.cq.inbox.ui
com.adobe.cq.inbox.ui.column
com.adobe.cq.inbox.ui.column.provider
com.adobe.cq.launches.api
com.adobe.cq.launches.api.timeline
com.adobe.cq.mcm.campaign
com.adobe.cq.mcm.campaign.profile
com.adobe.cq.msm.ui.models.alllivecopies
com.adobe.cq.msm.ui.models.blueprintconfig
com.adobe.cq.msm.ui.rendercondition
com.adobe.cq.projects.api
com.adobe.cq.remote.content.renderer
com.adobe.cq.scheduled.exporter
com.adobe.cq.scheduled.exporter.process
com.adobe.cq.sightly
com.adobe.cq.sites.ui.designfield.datasources
com.adobe.cq.sites.ui.models
com.adobe.cq.sites.ui.models.admin.security
com.adobe.cq.sites.ui.models.admin.security.permission
com.adobe.cq.sites.ui.renderconditions
com.adobe.cq.smartcontent
com.adobe.cq.targetrecommendations.api
com.adobe.cq.targetrecommendations.api.model
com.adobe.cq.wcm.core.components.commons.editor.dialog.childreneditor
com.adobe.cq.wcm.core.components.commons.editor.dialog.inherited
com.adobe.cq.wcm.core.components.commons.link
com.adobe.cq.wcm.core.components.config
com.adobe.cq.wcm.core.components.models
com.adobe.cq.wcm.core.components.models.contentfragment
com.adobe.cq.wcm.core.components.models.datalayer
com.adobe.cq.wcm.core.components.models.datalayer.builder
com.adobe.cq.wcm.core.components.models.embeddable
com.adobe.cq.wcm.core.components.models.form
com.adobe.cq.wcm.core.components.services.embed
com.adobe.cq.wcm.core.components.services.form
com.adobe.cq.wcm.core.components.services.link
com.adobe.cq.wcm.core.components.util
com.adobe.cq.wcm.core.extensions.amp.models
com.adobe.cq.wcm.launches.utils
com.adobe.cq.wcm.mobile.qrcode.servlet
com.adobe.cq.wcm.style
com.adobe.cq.xf
com.adobe.cq.xf.social
com.adobe.dam.print.ids
com.adobe.fontengine
com.adobe.fontengine.font
com.adobe.fontengine.font.cff
com.adobe.fontengine.font.mac
com.adobe.fontengine.font.opentype
com.adobe.fontengine.font.pdffont
com.adobe.fontengine.font.postscript
com.adobe.fontengine.font.type1
com.adobe.fontengine.fontmanagement
com.adobe.fontengine.fontmanagement.fxg
com.adobe.fontengine.fontmanagement.platform
com.adobe.fontengine.fontmanagement.postscript
com.adobe.fontengine.inlineformatting
com.adobe.fontengine.inlineformatting.css20
com.adobe.fontengine.inlineformatting.infontformatting
com.adobe.fontengine.math
com.adobe.granite.activitystreams
com.adobe.granite.activitystreams.utils
com.adobe.granite.asset.api
com.adobe.granite.auth.cert
com.adobe.granite.auth.ims
com.adobe.granite.auth.oauth
com.adobe.granite.cloudsettings
com.adobe.granite.comments
com.adobe.granite.confmgr
com.adobe.granite.contexthub.api
com.adobe.granite.contexthub.commons
com.adobe.granite.contexthub.models
com.adobe.granite.crypto
com.adobe.granite.haf.annotations
com.adobe.granite.haf.api
com.adobe.granite.haf.converter.api
com.adobe.granite.haf.converter.api.description
com.adobe.granite.haf.converter.platform.api
com.adobe.granite.httpcache.api
com.adobe.granite.i18n
com.adobe.granite.jmx.annotation
com.adobe.granite.keystore
com.adobe.granite.license
com.adobe.granite.logging
com.adobe.granite.maintenance
com.adobe.granite.oauth.jwt
com.adobe.granite.oauth.server
com.adobe.granite.omnisearch.api.core
com.adobe.granite.omnisearch.api.suggestion
com.adobe.granite.omnisearch.commons
com.adobe.granite.omnisearch.spi.core
com.adobe.granite.operations
com.adobe.granite.optout.api
com.adobe.granite.references
com.adobe.granite.requests.logging.api
com.adobe.granite.resourceresolverhelper
com.adobe.granite.resourcestatus
com.adobe.granite.rest
com.adobe.granite.rest.converter
com.adobe.granite.rest.converter.siren
com.adobe.granite.rest.filter
com.adobe.granite.rest.query
com.adobe.granite.rest.utils
com.adobe.granite.security.user
com.adobe.granite.security.user.util
com.adobe.granite.socialgraph
com.adobe.granite.socketio
com.adobe.granite.taskmanagement
com.adobe.granite.threaddump
com.adobe.granite.timeline
com.adobe.granite.timeline.types
com.adobe.granite.translation.api
com.adobe.granite.translation.api.xliff
com.adobe.granite.translation.connector.msft.core
com.adobe.granite.translation.connector.msft.core.ui.models
com.adobe.granite.translation.connector.msft.core.ui.utils
com.adobe.granite.translation.core
com.adobe.granite.translation.core.common
com.adobe.granite.ui.clientlibs
com.adobe.granite.ui.clientlibs.script
com.adobe.granite.ui.components
com.adobe.granite.ui.components.ds
com.adobe.granite.ui.components.formbuilder
com.adobe.granite.ui.components.htl
com.adobe.granite.ui.components.rendercondition
com.adobe.granite.ui.tags
com.adobe.granite.workflow
com.adobe.granite.workflow.collection
com.adobe.granite.workflow.collection.util
com.adobe.granite.workflow.core.event
com.adobe.granite.workflow.core.purge
com.adobe.granite.workflow.event
com.adobe.granite.workflow.exec
com.adobe.granite.workflow.exec.filter
com.adobe.granite.workflow.job
com.adobe.granite.workflow.launcher
com.adobe.granite.workflow.metadata
com.adobe.granite.workflow.metadata.storage
com.adobe.granite.workflow.metadata.storage.service
com.adobe.granite.workflow.model
com.adobe.granite.workflow.payload
com.adobe.granite.workflow.rule
com.adobe.granite.workflow.serialization
com.adobe.granite.workflow.status
com.adobe.granite.xss
com.adobe.internal.io
com.adobe.internal.io.stream
com.adobe.internal.mac.resource
com.adobe.internal.pdftoolkit.core.cos
com.adobe.internal.pdftoolkit.core.credentials
com.adobe.internal.pdftoolkit.core.credentials.impl
com.adobe.internal.pdftoolkit.core.credentials.impl.utils
com.adobe.internal.pdftoolkit.core.exceptions
com.adobe.internal.pdftoolkit.core.filter
com.adobe.internal.pdftoolkit.core.filter.spi
com.adobe.internal.pdftoolkit.core.fontset
com.adobe.internal.pdftoolkit.core.fontset.impl
com.adobe.internal.pdftoolkit.core.permissionprovider
com.adobe.internal.pdftoolkit.core.securityframework
com.adobe.internal.pdftoolkit.core.securityframework.impl
com.adobe.internal.pdftoolkit.core.securityframework.pki
com.adobe.internal.pdftoolkit.core.types
com.adobe.internal.pdftoolkit.core.util
com.adobe.internal.util
com.adobe.internal.xmp
com.adobe.internal.xmp.options
com.adobe.internal.xmp.properties
com.adobe.reef.siren
com.adobe.reef.siren.builder
com.adobe.reef.siren.converter
com.adobe.versioncue.nativecomm
com.adobe.versioncue.nativecomm.hook
com.adobe.versioncue.nativecomm.host
com.adobe.versioncue.nativecomm.io
com.adobe.versioncue.nativecomm.msg
com.adobe.xfa
com.adobe.xfa.agent
com.adobe.xfa.agent.formprocessor
com.adobe.xfa.configuration
com.adobe.xfa.connectionset
com.adobe.xfa.connectionset.proxies
com.adobe.xfa.content
com.adobe.xfa.data
com.adobe.xfa.dom
com.adobe.xfa.font
com.adobe.xfa.form
com.adobe.xfa.formcalc
com.adobe.xfa.gfx
com.adobe.xfa.layout
com.adobe.xfa.localeset
com.adobe.xfa.pmp.adobepdf417pmp
com.adobe.xfa.pmp.common
com.adobe.xfa.pmp.datamatrixpmp
com.adobe.xfa.pmp.datamatrixpmp.matrix
com.adobe.xfa.pmp.qrcodepmp
com.adobe.xfa.pmp.qrcodepmp.denso
com.adobe.xfa.protocol
com.adobe.xfa.scripthandler.formcalc
com.adobe.xfa.scripthandler.rhino
com.adobe.xfa.service
com.adobe.xfa.service.canonicalize
com.adobe.xfa.service.href
com.adobe.xfa.service.image
com.adobe.xfa.service.renderer
com.adobe.xfa.service.storage
com.adobe.xfa.soap
com.adobe.xfa.svg
com.adobe.xfa.template
com.adobe.xfa.template.automation
com.adobe.xfa.template.binding
com.adobe.xfa.template.containers
com.adobe.xfa.template.formatting
com.adobe.xfa.template.sequencing
com.adobe.xfa.template.ui
com.adobe.xfa.text
com.adobe.xfa.text.markup
com.adobe.xfa.ut
com.adobe.xfa.ut.lcdata
com.adobe.xfa.ut.trace
com.adobe.xfa.wsdl
com.adobe.xfa.wspolicy
com.adobe.xfa.xmp
com.adobe.xmp
com.adobe.xmp.core
com.adobe.xmp.core.namespace
com.adobe.xmp.core.parser
com.adobe.xmp.core.serializer
com.adobe.xmp.options
com.adobe.xmp.path
com.adobe.xmp.properties
com.adobe.xmp.schema.model
com.adobe.xmp.schema.model.rules
com.adobe.xmp.schema.rng.model
com.adobe.xmp.schema.rng.parser
com.adobe.xmp.schema.rng.parser.exceptions
com.adobe.xmp.schema.service
com.day.commons.datasource.poolservice
com.day.cq.analytics
com.day.cq.analytics.sitecatalyst
com.day.cq.analytics.sitecatalyst.common
com.day.cq.analytics.sitecatalyst.datainsertion
com.day.cq.analytics.sitecatalyst.util
com.day.cq.analytics.testandtarget
com.day.cq.analytics.testandtarget.mac
com.day.cq.analytics.testandtarget.util
com.day.cq.analytics.testandtarget.workspaces
com.day.cq.audit
com.day.cq.commons
com.day.cq.commons.date
com.day.cq.commons.feed
com.day.cq.commons.folderpreview
com.day.cq.commons.inherit
com.day.cq.commons.jcr
com.day.cq.commons.mail
com.day.cq.commons.predicate
com.day.cq.commons.servlets
com.day.cq.commons.thumbnail
com.day.cq.connector
com.day.cq.contentsync
com.day.cq.contentsync.config
com.day.cq.contentsync.handler
com.day.cq.contentsync.handler.util
com.day.cq.dam.api
com.day.cq.dam.api.cache
com.day.cq.dam.api.checkout
com.day.cq.dam.api.collection
com.day.cq.dam.api.handler
com.day.cq.dam.api.handler.store
com.day.cq.dam.api.handler.xmp
com.day.cq.dam.api.jobs
com.day.cq.dam.api.lightbox
com.day.cq.dam.api.metadata
com.day.cq.dam.api.metadata.xmp
com.day.cq.dam.api.renditions
com.day.cq.dam.api.s7dam.config
com.day.cq.dam.api.s7dam.constants
com.day.cq.dam.api.s7dam.set
com.day.cq.dam.api.s7dam.utils
com.day.cq.dam.api.thumbnail
com.day.cq.dam.api.timeline.types
com.day.cq.dam.api.ui.editor.metadata
com.day.cq.dam.api.ui.preview
com.day.cq.dam.commons.handler
com.day.cq.dam.commons.metadata
com.day.cq.dam.commons.preset
com.day.cq.dam.commons.process
com.day.cq.dam.commons.proxy
com.day.cq.dam.commons.sort
com.day.cq.dam.commons.thumbnail
com.day.cq.dam.commons.thumbnail.provider
com.day.cq.dam.commons.util
com.day.cq.dam.commons.watermark
com.day.cq.dam.commons.xml
com.day.cq.dam.handler.ffmpeg
com.day.cq.dam.handler.gibson.fontmanager
com.day.cq.dam.handler.standard
com.day.cq.dam.handler.standard.helper.imageinfo
com.day.cq.dam.indd
com.day.cq.dam.performance.api
com.day.cq.dam.scene7.api
com.day.cq.dam.scene7.api.constants
com.day.cq.dam.scene7.api.model
com.day.cq.dam.usage.api
com.day.cq.dam.video
com.day.cq.graphics
com.day.cq.graphics.chart
com.day.cq.i18n
com.day.cq.jcrclustersupport
com.day.cq.mailer
com.day.cq.mailer.commons
com.day.cq.mailer.email
com.day.cq.mcm.api
com.day.cq.mcm.api.newsletter
com.day.cq.mcm.campaign
com.day.cq.mcm.campaign.profile
com.day.cq.mcm.emailprovider
com.day.cq.mcm.emailprovider.types
com.day.cq.notification.api
com.day.cq.personalization
com.day.cq.personalization.dto
com.day.cq.personalization.offerlibrary.usebean
com.day.cq.personalization.tags
com.day.cq.personalization.ui.groupedservicesselector
com.day.cq.personalization.ui.items
com.day.cq.polling.importer
com.day.cq.preferences
com.day.cq.replication
com.day.cq.reporting
com.day.cq.reporting.helpers
com.day.cq.retriever
com.day.cq.rewriter.htmlparser
com.day.cq.rewriter.linkchecker
com.day.cq.rewriter.pipeline
com.day.cq.rewriter.processor
com.day.cq.search
com.day.cq.search.eval
com.day.cq.search.facets
com.day.cq.search.facets.buckets
com.day.cq.search.facets.extractors
com.day.cq.search.result
com.day.cq.search.suggest
com.day.cq.search.suggest.builder
com.day.cq.search.writer
com.day.cq.security
com.day.cq.security.privileges
com.day.cq.security.profile
com.day.cq.security.resource
com.day.cq.security.util
com.day.cq.spellchecker
com.day.cq.spellchecker.spi
com.day.cq.statistics
com.day.cq.statistics.util
com.day.cq.tagging
com.day.cq.wcm.api
com.day.cq.wcm.api.commands
com.day.cq.wcm.api.components
com.day.cq.wcm.api.designer
com.day.cq.wcm.api.devicedetection
com.day.cq.wcm.api.msm
com.day.cq.wcm.api.policies
com.day.cq.wcm.api.reference
com.day.cq.wcm.api.variants
com.day.cq.wcm.command.api
com.day.cq.wcm.commons
com.day.cq.wcm.commons.policy
com.day.cq.wcm.commons.status
com.day.cq.wcm.contentsync
com.day.cq.wcm.core.components
com.day.cq.wcm.core.contentfinder
com.day.cq.wcm.core.references
com.day.cq.wcm.core.stats
com.day.cq.wcm.core.utils
com.day.cq.wcm.designimporter
com.day.cq.wcm.designimporter.api
com.day.cq.wcm.designimporter.parser
com.day.cq.wcm.designimporter.parser.taghandlers
com.day.cq.wcm.designimporter.parser.taghandlers.factory
com.day.cq.wcm.designimporter.util
com.day.cq.wcm.emulator
com.day.cq.wcm.foundation
com.day.cq.wcm.foundation.forms
com.day.cq.wcm.foundation.forms.attachments
com.day.cq.wcm.foundation.model
com.day.cq.wcm.foundation.model.export
com.day.cq.wcm.foundation.model.responsivegrid
com.day.cq.wcm.foundation.model.responsivegrid.export
com.day.cq.wcm.foundation.search
com.day.cq.wcm.foundation.security
com.day.cq.wcm.foundation.utils
com.day.cq.wcm.mobile.api
com.day.cq.wcm.mobile.api.device
com.day.cq.wcm.mobile.api.device.capability
com.day.cq.wcm.mobile.api.devicespecs
com.day.cq.wcm.mobile.core
com.day.cq.wcm.models.annotations.injectorspecific
com.day.cq.wcm.msm.api
com.day.cq.wcm.msm.commons
com.day.cq.wcm.resource.details
com.day.cq.wcm.scripting
com.day.cq.wcm.tags
com.day.cq.wcm.undo
com.day.cq.wcm.webservicesupport
com.day.cq.wcm.workflow.api
com.day.cq.wcm.workflow.process
com.day.cq.widget
com.day.cq.workflow
com.day.cq.workflow.collection
com.day.cq.workflow.collection.util
com.day.cq.workflow.compatibility
com.day.cq.workflow.event
com.day.cq.workflow.exec
com.day.cq.workflow.exec.filter
com.day.cq.workflow.filter
com.day.cq.workflow.job
com.day.cq.workflow.launcher
com.day.cq.workflow.metadata
com.day.cq.workflow.model
com.day.cq.workflow.predicate
com.day.cq.workflow.rule
com.day.cq.workflow.serialization
com.day.cq.workflow.statistics
com.day.cq.workflow.status
com.day.cq.workflow.timeout.autoadvance
com.day.cq.workflow.ui
com.day.cq.workflow.util
com.day.cq.xss
com.day.cq.xss.taglib
com.day.crx
com.day.crx.io
com.day.crx.security.token
com.day.crx.statistics
com.day.crx.statistics.keyword
com.day.crx.statistics.loader
com.day.crx.statistics.query
com.day.crx.statistics.result
com.day.image
com.day.image.font
com.day.text
com.day.text.csv
com.day.util
com.day.util.diff
com.drew.imaging
com.drew.imaging.jpeg
com.drew.imaging.psd
com.drew.imaging.tiff
com.drew.lang
com.drew.lang.annotations
com.drew.metadata
com.drew.metadata.adobe
com.drew.metadata.exif
com.drew.metadata.icc
com.drew.metadata.iptc
com.drew.metadata.jfif
com.drew.metadata.jpeg
com.drew.metadata.photoshop
com.drew.metadata.xmp
com.fasterxml.jackson.annotation
com.fasterxml.jackson.core
com.fasterxml.jackson.core.async
com.fasterxml.jackson.core.base
com.fasterxml.jackson.core.exc
com.fasterxml.jackson.core.filter
com.fasterxml.jackson.core.format
com.fasterxml.jackson.core.io
com.fasterxml.jackson.core.json
com.fasterxml.jackson.core.json.async
com.fasterxml.jackson.core.sym
com.fasterxml.jackson.core.type
com.fasterxml.jackson.core.util
com.fasterxml.jackson.databind
com.fasterxml.jackson.databind.annotation
com.fasterxml.jackson.databind.cfg
com.fasterxml.jackson.databind.deser
com.fasterxml.jackson.databind.deser.impl
com.fasterxml.jackson.databind.deser.std
com.fasterxml.jackson.databind.exc
com.fasterxml.jackson.databind.ext
com.fasterxml.jackson.databind.introspect
com.fasterxml.jackson.databind.json
com.fasterxml.jackson.databind.jsonFormatVisitors
com.fasterxml.jackson.databind.jsonschema
com.fasterxml.jackson.databind.jsontype
com.fasterxml.jackson.databind.jsontype.impl
com.fasterxml.jackson.databind.module
com.fasterxml.jackson.databind.node
com.fasterxml.jackson.databind.ser
com.fasterxml.jackson.databind.ser.impl
com.fasterxml.jackson.databind.ser.std
com.fasterxml.jackson.databind.type
com.fasterxml.jackson.databind.util
com.github.jknack.handlebars
com.github.jknack.handlebars.cache
com.github.jknack.handlebars.context
com.github.jknack.handlebars.helper
com.github.jknack.handlebars.io
com.github.jknack.handlebars.js
com.google.common.annotations
com.google.common.base
com.google.common.cache
com.google.common.collect
com.google.common.escape
com.google.common.eventbus
com.google.common.hash
com.google.common.html
com.google.common.io
com.google.common.math
com.google.common.net
com.google.common.primitives
com.google.common.reflect
com.google.common.util.concurrent
com.google.common.xml
com.google.gson
com.google.gson.annotations
com.google.gson.reflect
com.google.gson.stream
com.mongodb
com.mongodb.annotations
com.mongodb.assertions
com.mongodb.async
com.mongodb.binding
com.mongodb.bulk
com.mongodb.client
com.mongodb.client.gridfs
com.mongodb.client.gridfs.codecs
com.mongodb.client.gridfs.model
com.mongodb.client.jndi
com.mongodb.client.model
com.mongodb.client.model.changestream
com.mongodb.client.model.geojson
com.mongodb.client.model.geojson.codecs
com.mongodb.client.result
com.mongodb.connection
com.mongodb.connection.netty
com.mongodb.diagnostics.logging
com.mongodb.event
com.mongodb.gridfs
com.mongodb.internal
com.mongodb.internal.async
com.mongodb.internal.authentication
com.mongodb.internal.connection
com.mongodb.internal.dns
com.mongodb.internal.event
com.mongodb.internal.management.jmx
com.mongodb.internal.session
com.mongodb.internal.thread
com.mongodb.internal.validator
com.mongodb.management
com.mongodb.operation
com.mongodb.selector
com.mongodb.session
com.mongodb.util
com.scene7.ipsapi
com.scene7.ipsapi.common
com.sun.mail.handlers
com.sun.mail.iap
com.sun.mail.imap
com.sun.mail.imap.protocol
com.sun.mail.pop3
com.sun.mail.smtp
com.sun.mail.util
com.sun.mail.util.logging
javax.activation
javax.annotation
javax.annotation.security
javax.annotation.sql
javax.el
javax.inject
javax.jcr
javax.jcr.lock
javax.jcr.nodetype
javax.jcr.observation
javax.jcr.query
javax.jcr.query.qom
javax.jcr.retention
javax.jcr.security
javax.jcr.util
javax.jcr.version
javax.json
javax.json.spi
javax.json.stream
javax.jws
javax.jws.soap
javax.mail
javax.mail.event
javax.mail.internet
javax.mail.search
javax.mail.util
javax.servlet
javax.servlet.annotation
javax.servlet.descriptor
javax.servlet.http
javax.servlet.jsp
javax.servlet.jsp.el
javax.servlet.jsp.jstl.core
javax.servlet.jsp.jstl.fmt
javax.servlet.jsp.jstl.sql
javax.servlet.jsp.jstl.tlv
javax.servlet.jsp.resources
javax.servlet.jsp.tagext
javax.transaction
javax.transaction.xa
javax.xml.bind
javax.xml.bind.annotation
javax.xml.bind.annotation.adapters
javax.xml.bind.attachment
javax.xml.bind.helpers
javax.xml.bind.util
javax.xml.soap
javax.xml.ws
javax.xml.ws.handler
javax.xml.ws.handler.soap
javax.xml.ws.http
javax.xml.ws.soap
javax.xml.ws.spi
javax.xml.ws.spi.http
javax.xml.ws.wsaddressing
opennlp.tools.chunker
opennlp.tools.dictionary
opennlp.tools.dictionary.serializer
opennlp.tools.ml
opennlp.tools.ml.maxent
opennlp.tools.ml.maxent.io
opennlp.tools.ml.maxent.quasinewton
opennlp.tools.ml.model
opennlp.tools.ml.perceptron
opennlp.tools.namefind
opennlp.tools.ngram
opennlp.tools.postag
opennlp.tools.tokenize
opennlp.tools.tokenize.lang
opennlp.tools.util
opennlp.tools.util.eval
opennlp.tools.util.ext
opennlp.tools.util.featuregen
opennlp.tools.util.model
org.apache.abdera
org.apache.abdera.ext.media
org.apache.abdera.factory
org.apache.abdera.filter
org.apache.abdera.i18n.iri
org.apache.abdera.i18n.rfc4646
org.apache.abdera.i18n.rfc4646.enums
org.apache.abdera.i18n.text
org.apache.abdera.i18n.text.data
org.apache.abdera.i18n.text.io
org.apache.abdera.model
org.apache.abdera.parser
org.apache.abdera.util
org.apache.abdera.writer
org.apache.abdera.xpath
org.apache.aries.transaction
org.apache.aries.util
org.apache.aries.util.filesystem
org.apache.aries.util.filesystem.impl
org.apache.aries.util.internal
org.apache.aries.util.io
org.apache.aries.util.log
org.apache.aries.util.manifest
org.apache.aries.util.messages
org.apache.aries.util.nls
org.apache.aries.util.service.registry
org.apache.aries.util.tracker
org.apache.aries.util.tracker.hook
org.apache.cocoon.xml.dom
org.apache.cocoon.xml.sax
org.apache.commons.codec
org.apache.commons.codec.binary
org.apache.commons.codec.cli
org.apache.commons.codec.digest
org.apache.commons.codec.language
org.apache.commons.codec.language.bm
org.apache.commons.codec.net
org.apache.commons.collections
org.apache.commons.collections.bag
org.apache.commons.collections.bidimap
org.apache.commons.collections.buffer
org.apache.commons.collections.collection
org.apache.commons.collections.comparators
org.apache.commons.collections.functors
org.apache.commons.collections.iterators
org.apache.commons.collections.keyvalue
org.apache.commons.collections.list
org.apache.commons.collections.map
org.apache.commons.collections.set
org.apache.commons.collections4
org.apache.commons.collections4.bag
org.apache.commons.collections4.bidimap
org.apache.commons.collections4.collection
org.apache.commons.collections4.comparators
org.apache.commons.collections4.functors
org.apache.commons.collections4.iterators
org.apache.commons.collections4.keyvalue
org.apache.commons.collections4.list
org.apache.commons.collections4.map
org.apache.commons.collections4.multimap
org.apache.commons.collections4.multiset
org.apache.commons.collections4.properties
org.apache.commons.collections4.queue
org.apache.commons.collections4.sequence
org.apache.commons.collections4.set
org.apache.commons.collections4.splitmap
org.apache.commons.collections4.trie
org.apache.commons.collections4.trie.analyzer
org.apache.commons.compress
org.apache.commons.compress.archivers
org.apache.commons.compress.archivers.ar
org.apache.commons.compress.archivers.arj
org.apache.commons.compress.archivers.cpio
org.apache.commons.compress.archivers.dump
org.apache.commons.compress.archivers.jar
org.apache.commons.compress.archivers.sevenz
org.apache.commons.compress.archivers.tar
org.apache.commons.compress.archivers.zip
org.apache.commons.compress.changes
org.apache.commons.compress.compressors
org.apache.commons.compress.compressors.brotli
org.apache.commons.compress.compressors.bzip2
org.apache.commons.compress.compressors.deflate
org.apache.commons.compress.compressors.deflate64
org.apache.commons.compress.compressors.gzip
org.apache.commons.compress.compressors.lz4
org.apache.commons.compress.compressors.lz77support
org.apache.commons.compress.compressors.lzma
org.apache.commons.compress.compressors.lzw
org.apache.commons.compress.compressors.pack200
org.apache.commons.compress.compressors.snappy
org.apache.commons.compress.compressors.xz
org.apache.commons.compress.compressors.z
org.apache.commons.compress.compressors.zstandard
org.apache.commons.compress.parallel
org.apache.commons.compress.utils
org.apache.commons.exec
org.apache.commons.fileupload
org.apache.commons.fileupload.disk
org.apache.commons.fileupload.portlet
org.apache.commons.fileupload.servlet
org.apache.commons.fileupload.util
org.apache.commons.httpclient
org.apache.commons.httpclient.auth
org.apache.commons.httpclient.cookie
org.apache.commons.httpclient.methods
org.apache.commons.httpclient.methods.multipart
org.apache.commons.httpclient.params
org.apache.commons.httpclient.protocol
org.apache.commons.httpclient.util
org.apache.commons.imaging
org.apache.commons.imaging.common.bytesource
org.apache.commons.io
org.apache.commons.io.comparator
org.apache.commons.io.file
org.apache.commons.io.filefilter
org.apache.commons.io.function
org.apache.commons.io.input
org.apache.commons.io.input.buffer
org.apache.commons.io.monitor
org.apache.commons.io.output
org.apache.commons.io.serialization
org.apache.commons.lang
org.apache.commons.lang.builder
org.apache.commons.lang.enums
org.apache.commons.lang.exception
org.apache.commons.lang.math
org.apache.commons.lang.mutable
org.apache.commons.lang.reflect
org.apache.commons.lang.text
org.apache.commons.lang.time
org.apache.commons.lang3
org.apache.commons.lang3.arch
org.apache.commons.lang3.builder
org.apache.commons.lang3.compare
org.apache.commons.lang3.concurrent
org.apache.commons.lang3.concurrent.locks
org.apache.commons.lang3.event
org.apache.commons.lang3.exception
org.apache.commons.lang3.function
org.apache.commons.lang3.math
org.apache.commons.lang3.mutable
org.apache.commons.lang3.reflect
org.apache.commons.lang3.stream
org.apache.commons.lang3.text
org.apache.commons.lang3.text.translate
org.apache.commons.lang3.time
org.apache.commons.lang3.tuple
org.apache.commons.logging
org.apache.commons.logging.impl
org.apache.commons.mail
org.apache.commons.mail.resolver
org.apache.commons.mail.util
org.apache.commons.math
org.apache.commons.math.analysis
org.apache.commons.math.analysis.integration
org.apache.commons.math.analysis.interpolation
org.apache.commons.math.analysis.polynomials
org.apache.commons.math.analysis.solvers
org.apache.commons.math.complex
org.apache.commons.math.dfp
org.apache.commons.math.distribution
org.apache.commons.math.estimation
org.apache.commons.math.exception
org.apache.commons.math.exception.util
org.apache.commons.math.fraction
org.apache.commons.math.genetics
org.apache.commons.math.geometry
org.apache.commons.math.linear
org.apache.commons.math.ode
org.apache.commons.math.ode.events
org.apache.commons.math.ode.jacobians
org.apache.commons.math.ode.nonstiff
org.apache.commons.math.ode.sampling
org.apache.commons.math.optimization
org.apache.commons.math.optimization.direct
org.apache.commons.math.optimization.fitting
org.apache.commons.math.optimization.general
org.apache.commons.math.optimization.linear
org.apache.commons.math.optimization.univariate
org.apache.commons.math.random
org.apache.commons.math.special
org.apache.commons.math.stat
org.apache.commons.math.stat.clustering
org.apache.commons.math.stat.correlation
org.apache.commons.math.stat.descriptive
org.apache.commons.math.stat.descriptive.moment
org.apache.commons.math.stat.descriptive.rank
org.apache.commons.math.stat.descriptive.summary
org.apache.commons.math.stat.inference
org.apache.commons.math.stat.ranking
org.apache.commons.math.stat.regression
org.apache.commons.math.transform
org.apache.commons.math.util
org.apache.felix.cm
org.apache.felix.cm.file
org.apache.felix.hc.api
org.apache.felix.hc.api.condition
org.apache.felix.hc.api.execution
org.apache.felix.http.jetty
org.apache.felix.http.whiteboard
org.apache.felix.inventory
org.apache.felix.jaas
org.apache.felix.jaas.boot
org.apache.felix.metatype
org.apache.felix.scr.component
org.apache.felix.scr.info
org.apache.felix.systemready
org.apache.felix.webconsole
org.apache.felix.webconsole.bundleinfo
org.apache.felix.webconsole.i18n
org.apache.fop.apps
org.apache.geronimo.transaction
org.apache.geronimo.transaction.log
org.apache.geronimo.transaction.manager
org.apache.http
org.apache.http.annotation
org.apache.http.auth
org.apache.http.auth.params
org.apache.http.client
org.apache.http.client.cache
org.apache.http.client.config
org.apache.http.client.entity
org.apache.http.client.fluent
org.apache.http.client.methods
org.apache.http.client.params
org.apache.http.client.protocol
org.apache.http.client.utils
org.apache.http.concurrent
org.apache.http.config
org.apache.http.conn
org.apache.http.conn.params
org.apache.http.conn.routing
org.apache.http.conn.scheme
org.apache.http.conn.socket
org.apache.http.conn.ssl
org.apache.http.conn.util
org.apache.http.cookie
org.apache.http.cookie.params
org.apache.http.entity
org.apache.http.entity.mime
org.apache.http.entity.mime.content
org.apache.http.impl
org.apache.http.impl.auth
org.apache.http.impl.bootstrap
org.apache.http.impl.client
org.apache.http.impl.client.cache
org.apache.http.impl.client.cache.ehcache
org.apache.http.impl.client.cache.memcached
org.apache.http.impl.conn
org.apache.http.impl.conn.tsccm
org.apache.http.impl.cookie
org.apache.http.impl.entity
org.apache.http.impl.execchain
org.apache.http.impl.io
org.apache.http.impl.nio
org.apache.http.impl.nio.bootstrap
org.apache.http.impl.nio.codecs
org.apache.http.impl.nio.pool
org.apache.http.impl.nio.reactor
org.apache.http.impl.nio.ssl
org.apache.http.impl.pool
org.apache.http.io
org.apache.http.message
org.apache.http.nio
org.apache.http.nio.entity
org.apache.http.nio.params
org.apache.http.nio.pool
org.apache.http.nio.protocol
org.apache.http.nio.reactor
org.apache.http.nio.reactor.ssl
org.apache.http.nio.util
org.apache.http.osgi.services
org.apache.http.params
org.apache.http.pool
org.apache.http.protocol
org.apache.http.ssl
org.apache.http.util
org.apache.jackrabbit
org.apache.jackrabbit.api
org.apache.jackrabbit.api.binary
org.apache.jackrabbit.api.jmx
org.apache.jackrabbit.api.management
org.apache.jackrabbit.api.observation
org.apache.jackrabbit.api.query
org.apache.jackrabbit.api.security
org.apache.jackrabbit.api.security.authentication.token
org.apache.jackrabbit.api.security.authorization
org.apache.jackrabbit.api.security.principal
org.apache.jackrabbit.api.security.user
org.apache.jackrabbit.api.stats
org.apache.jackrabbit.commons
org.apache.jackrabbit.commons.cnd
org.apache.jackrabbit.commons.flat
org.apache.jackrabbit.commons.iterator
org.apache.jackrabbit.commons.jackrabbit
org.apache.jackrabbit.commons.jackrabbit.authorization
org.apache.jackrabbit.commons.jackrabbit.user
org.apache.jackrabbit.commons.json
org.apache.jackrabbit.commons.observation
org.apache.jackrabbit.commons.packaging
org.apache.jackrabbit.commons.predicate
org.apache.jackrabbit.commons.query
org.apache.jackrabbit.commons.query.qom
org.apache.jackrabbit.commons.query.sql2
org.apache.jackrabbit.commons.repository
org.apache.jackrabbit.commons.visitor
org.apache.jackrabbit.commons.webdav
org.apache.jackrabbit.commons.xml
org.apache.jackrabbit.core.config
org.apache.jackrabbit.core.data
org.apache.jackrabbit.core.data.db
org.apache.jackrabbit.core.data.util
org.apache.jackrabbit.core.fs
org.apache.jackrabbit.core.fs.local
org.apache.jackrabbit.core.util.db
org.apache.jackrabbit.data.core
org.apache.jackrabbit.oak
org.apache.jackrabbit.oak.api
org.apache.jackrabbit.oak.api.jmx
org.apache.jackrabbit.oak.cache
org.apache.jackrabbit.oak.commons
org.apache.jackrabbit.oak.commons.cache
org.apache.jackrabbit.oak.commons.concurrent
org.apache.jackrabbit.oak.commons.io
org.apache.jackrabbit.oak.commons.jmx
org.apache.jackrabbit.oak.commons.json
org.apache.jackrabbit.oak.commons.sort
org.apache.jackrabbit.oak.composite
org.apache.jackrabbit.oak.composite.checks
org.apache.jackrabbit.oak.jcr
org.apache.jackrabbit.oak.jcr.observation.filter
org.apache.jackrabbit.oak.json
org.apache.jackrabbit.oak.namepath
org.apache.jackrabbit.oak.namepath.impl
org.apache.jackrabbit.oak.osgi
org.apache.jackrabbit.oak.plugins.blob
org.apache.jackrabbit.oak.plugins.blob.datastore
org.apache.jackrabbit.oak.plugins.commit
org.apache.jackrabbit.oak.plugins.document.spi
org.apache.jackrabbit.oak.plugins.identifier
org.apache.jackrabbit.oak.plugins.index
org.apache.jackrabbit.oak.plugins.index.aggregate
org.apache.jackrabbit.oak.plugins.index.fulltext
org.apache.jackrabbit.oak.plugins.index.importer
org.apache.jackrabbit.oak.plugins.index.lucene
org.apache.jackrabbit.oak.plugins.index.lucene.spi
org.apache.jackrabbit.oak.plugins.index.lucene.util
org.apache.jackrabbit.oak.plugins.index.property
org.apache.jackrabbit.oak.plugins.index.property.strategy
org.apache.jackrabbit.oak.plugins.index.reference
org.apache.jackrabbit.oak.plugins.lock
org.apache.jackrabbit.oak.plugins.memory
org.apache.jackrabbit.oak.plugins.migration
org.apache.jackrabbit.oak.plugins.migration.report
org.apache.jackrabbit.oak.plugins.name
org.apache.jackrabbit.oak.plugins.nodetype
org.apache.jackrabbit.oak.plugins.nodetype.write
org.apache.jackrabbit.oak.plugins.observation
org.apache.jackrabbit.oak.plugins.observation.filter
org.apache.jackrabbit.oak.plugins.tree
org.apache.jackrabbit.oak.plugins.tree.factories
org.apache.jackrabbit.oak.plugins.value
org.apache.jackrabbit.oak.plugins.value.jcr
org.apache.jackrabbit.oak.plugins.version
org.apache.jackrabbit.oak.query.facet
org.apache.jackrabbit.oak.spi.blob
org.apache.jackrabbit.oak.spi.blob.split
org.apache.jackrabbit.oak.spi.blob.stats
org.apache.jackrabbit.oak.spi.cluster
org.apache.jackrabbit.oak.spi.commit
org.apache.jackrabbit.oak.spi.descriptors
org.apache.jackrabbit.oak.spi.filter
org.apache.jackrabbit.oak.spi.gc
org.apache.jackrabbit.oak.spi.lifecycle
org.apache.jackrabbit.oak.spi.lock
org.apache.jackrabbit.oak.spi.mount
org.apache.jackrabbit.oak.spi.namespace
org.apache.jackrabbit.oak.spi.nodetype
org.apache.jackrabbit.oak.spi.observation
org.apache.jackrabbit.oak.spi.query
org.apache.jackrabbit.oak.spi.query.fulltext
org.apache.jackrabbit.oak.spi.security
org.apache.jackrabbit.oak.spi.security.authentication
org.apache.jackrabbit.oak.spi.security.authentication.callback
org.apache.jackrabbit.oak.spi.security.authentication.credentials
org.apache.jackrabbit.oak.spi.security.authentication.external
org.apache.jackrabbit.oak.spi.security.authentication.external.basic
org.apache.jackrabbit.oak.spi.security.authentication.token
org.apache.jackrabbit.oak.spi.security.authorization
org.apache.jackrabbit.oak.spi.security.authorization.accesscontrol
org.apache.jackrabbit.oak.spi.security.authorization.cug
org.apache.jackrabbit.oak.spi.security.authorization.permission
org.apache.jackrabbit.oak.spi.security.authorization.restriction
org.apache.jackrabbit.oak.spi.security.principal
org.apache.jackrabbit.oak.spi.security.privilege
org.apache.jackrabbit.oak.spi.security.user
org.apache.jackrabbit.oak.spi.security.user.action
org.apache.jackrabbit.oak.spi.security.user.util
org.apache.jackrabbit.oak.spi.state
org.apache.jackrabbit.oak.spi.version
org.apache.jackrabbit.oak.spi.whiteboard
org.apache.jackrabbit.oak.spi.xml
org.apache.jackrabbit.oak.stats
org.apache.jackrabbit.server.io
org.apache.jackrabbit.spi
org.apache.jackrabbit.spi.commons
org.apache.jackrabbit.spi.commons.batch
org.apache.jackrabbit.spi.commons.conversion
org.apache.jackrabbit.spi.commons.identifier
org.apache.jackrabbit.spi.commons.iterator
org.apache.jackrabbit.spi.commons.lock
org.apache.jackrabbit.spi.commons.logging
org.apache.jackrabbit.spi.commons.name
org.apache.jackrabbit.spi.commons.namespace
org.apache.jackrabbit.spi.commons.nodetype
org.apache.jackrabbit.spi.commons.nodetype.compact
org.apache.jackrabbit.spi.commons.nodetype.constraint
org.apache.jackrabbit.spi.commons.privilege
org.apache.jackrabbit.spi.commons.query
org.apache.jackrabbit.spi.commons.query.qom
org.apache.jackrabbit.spi.commons.query.sql
org.apache.jackrabbit.spi.commons.query.sql2
org.apache.jackrabbit.spi.commons.query.xpath
org.apache.jackrabbit.spi.commons.tree
org.apache.jackrabbit.spi.commons.util
org.apache.jackrabbit.spi.commons.value
org.apache.jackrabbit.stats
org.apache.jackrabbit.stats.jmx
org.apache.jackrabbit.util
org.apache.jackrabbit.value
org.apache.jackrabbit.vault.fs
org.apache.jackrabbit.vault.fs.api
org.apache.jackrabbit.vault.fs.config
org.apache.jackrabbit.vault.fs.filter
org.apache.jackrabbit.vault.fs.io
org.apache.jackrabbit.vault.fs.spi
org.apache.jackrabbit.vault.packaging
org.apache.jackrabbit.vault.packaging.events
org.apache.jackrabbit.vault.packaging.registry
org.apache.jackrabbit.vault.util
org.apache.jackrabbit.vault.util.xml
org.apache.jackrabbit.vault.util.xml.serialize
org.apache.jackrabbit.vault.util.xml.xerces.dom
org.apache.jackrabbit.vault.util.xml.xerces.util
org.apache.jackrabbit.vault.util.xml.xerces.xni
org.apache.jackrabbit.vault.util.xml.xerces.xni.parser
org.apache.jackrabbit.webdav
org.apache.jackrabbit.webdav.bind
org.apache.jackrabbit.webdav.client.methods
org.apache.jackrabbit.webdav.header
org.apache.jackrabbit.webdav.io
org.apache.jackrabbit.webdav.lock
org.apache.jackrabbit.webdav.observation
org.apache.jackrabbit.webdav.ordering
org.apache.jackrabbit.webdav.property
org.apache.jackrabbit.webdav.search
org.apache.jackrabbit.webdav.security
org.apache.jackrabbit.webdav.security.report
org.apache.jackrabbit.webdav.server
org.apache.jackrabbit.webdav.transaction
org.apache.jackrabbit.webdav.util
org.apache.jackrabbit.webdav.version
org.apache.jackrabbit.webdav.version.report
org.apache.jackrabbit.webdav.xml
org.apache.log4j
org.apache.log4j.helpers
org.apache.log4j.spi
org.apache.log4j.xml
org.apache.lucene
org.apache.lucene.analysis
org.apache.lucene.analysis.ar
org.apache.lucene.analysis.bg
org.apache.lucene.analysis.br
org.apache.lucene.analysis.ca
org.apache.lucene.analysis.charfilter
org.apache.lucene.analysis.cjk
org.apache.lucene.analysis.ckb
org.apache.lucene.analysis.cn
org.apache.lucene.analysis.commongrams
org.apache.lucene.analysis.compound
org.apache.lucene.analysis.compound.hyphenation
org.apache.lucene.analysis.core
org.apache.lucene.analysis.cz
org.apache.lucene.analysis.da
org.apache.lucene.analysis.de
org.apache.lucene.analysis.el
org.apache.lucene.analysis.en
org.apache.lucene.analysis.es
org.apache.lucene.analysis.eu
org.apache.lucene.analysis.fa
org.apache.lucene.analysis.fi
org.apache.lucene.analysis.fr
org.apache.lucene.analysis.ga
org.apache.lucene.analysis.gl
org.apache.lucene.analysis.hi
org.apache.lucene.analysis.hu
org.apache.lucene.analysis.hunspell
org.apache.lucene.analysis.hy
org.apache.lucene.analysis.id
org.apache.lucene.analysis.in
org.apache.lucene.analysis.it
org.apache.lucene.analysis.lv
org.apache.lucene.analysis.miscellaneous
org.apache.lucene.analysis.ngram
org.apache.lucene.analysis.nl
org.apache.lucene.analysis.no
org.apache.lucene.analysis.path
org.apache.lucene.analysis.pattern
org.apache.lucene.analysis.payloads
org.apache.lucene.analysis.position
org.apache.lucene.analysis.pt
org.apache.lucene.analysis.query
org.apache.lucene.analysis.reverse
org.apache.lucene.analysis.ro
org.apache.lucene.analysis.ru
org.apache.lucene.analysis.shingle
org.apache.lucene.analysis.sinks
org.apache.lucene.analysis.snowball
org.apache.lucene.analysis.standard
org.apache.lucene.analysis.standard.std31
org.apache.lucene.analysis.standard.std34
org.apache.lucene.analysis.standard.std36
org.apache.lucene.analysis.standard.std40
org.apache.lucene.analysis.sv
org.apache.lucene.analysis.synonym
org.apache.lucene.analysis.th
org.apache.lucene.analysis.tokenattributes
org.apache.lucene.analysis.tr
org.apache.lucene.analysis.util
org.apache.lucene.analysis.wikipedia
org.apache.lucene.codecs
org.apache.lucene.codecs.compressing
org.apache.lucene.codecs.lucene3x
org.apache.lucene.codecs.lucene40
org.apache.lucene.codecs.lucene41
org.apache.lucene.codecs.lucene42
org.apache.lucene.codecs.lucene45
org.apache.lucene.codecs.lucene46
org.apache.lucene.codecs.perfield
org.apache.lucene.collation
org.apache.lucene.collation.tokenattributes
org.apache.lucene.document
org.apache.lucene.facet
org.apache.lucene.facet.range
org.apache.lucene.facet.sortedset
org.apache.lucene.facet.taxonomy
org.apache.lucene.facet.taxonomy.directory
org.apache.lucene.facet.taxonomy.writercache
org.apache.lucene.index
org.apache.lucene.index.memory
org.apache.lucene.index.sorter
org.apache.lucene.misc
org.apache.lucene.queries
org.apache.lucene.queries.function
org.apache.lucene.queries.function.docvalues
org.apache.lucene.queries.function.valuesource
org.apache.lucene.queries.mlt
org.apache.lucene.queryparser.analyzing
org.apache.lucene.queryparser.classic
org.apache.lucene.queryparser.complexPhrase
org.apache.lucene.queryparser.ext
org.apache.lucene.queryparser.flexible.core
org.apache.lucene.queryparser.flexible.core.builders
org.apache.lucene.queryparser.flexible.core.config
org.apache.lucene.queryparser.flexible.core.messages
org.apache.lucene.queryparser.flexible.core.nodes
org.apache.lucene.queryparser.flexible.core.parser
org.apache.lucene.queryparser.flexible.core.processors
org.apache.lucene.queryparser.flexible.core.util
org.apache.lucene.queryparser.flexible.messages
org.apache.lucene.queryparser.flexible.precedence
org.apache.lucene.queryparser.flexible.precedence.processors
org.apache.lucene.queryparser.flexible.standard
org.apache.lucene.queryparser.flexible.standard.builders
org.apache.lucene.queryparser.flexible.standard.config
org.apache.lucene.queryparser.flexible.standard.nodes
org.apache.lucene.queryparser.flexible.standard.parser
org.apache.lucene.queryparser.flexible.standard.processors
org.apache.lucene.queryparser.simple
org.apache.lucene.queryparser.surround.parser
org.apache.lucene.queryparser.surround.query
org.apache.lucene.queryparser.xml
org.apache.lucene.queryparser.xml.builders
org.apache.lucene.search
org.apache.lucene.search.highlight
org.apache.lucene.search.payloads
org.apache.lucene.search.postingshighlight
org.apache.lucene.search.similarities
org.apache.lucene.search.spans
org.apache.lucene.search.spell
org.apache.lucene.search.suggest
org.apache.lucene.search.suggest.analyzing
org.apache.lucene.search.suggest.fst
org.apache.lucene.search.suggest.jaspell
org.apache.lucene.search.suggest.tst
org.apache.lucene.search.vectorhighlight
org.apache.lucene.store
org.apache.lucene.util
org.apache.lucene.util.automaton
org.apache.lucene.util.fst
org.apache.lucene.util.mutable
org.apache.lucene.util.packed
org.apache.oltu.commons.encodedtoken
org.apache.oltu.commons.json
org.apache.oltu.jose.jws
org.apache.oltu.jose.jws.io
org.apache.oltu.jose.jws.signature
org.apache.oltu.jose.jws.signature.impl
org.apache.oltu.oauth2.as.issuer
org.apache.oltu.oauth2.as.request
org.apache.oltu.oauth2.as.response
org.apache.oltu.oauth2.as.validator
org.apache.oltu.oauth2.client
org.apache.oltu.oauth2.client.request
org.apache.oltu.oauth2.client.response
org.apache.oltu.oauth2.common
org.apache.oltu.oauth2.common.domain.client
org.apache.oltu.oauth2.common.domain.credentials
org.apache.oltu.oauth2.common.error
org.apache.oltu.oauth2.common.exception
org.apache.oltu.oauth2.common.message
org.apache.oltu.oauth2.common.message.types
org.apache.oltu.oauth2.common.parameters
org.apache.oltu.oauth2.common.token
org.apache.oltu.oauth2.common.utils
org.apache.oltu.oauth2.common.validators
org.apache.oltu.oauth2.jwt
org.apache.oltu.oauth2.jwt.io
org.apache.oltu.oauth2.jwt.request
org.apache.oltu.oauth2.rs
org.apache.oltu.oauth2.rs.extractor
org.apache.oltu.oauth2.rs.request
org.apache.oltu.oauth2.rs.response
org.apache.oltu.oauth2.rs.validator
org.apache.poi
org.apache.poi.common.usermodel
org.apache.poi.common.usermodel.fonts
org.apache.poi.ddf
org.apache.poi.extractor
org.apache.poi.hdgf
org.apache.poi.hdgf.chunks
org.apache.poi.hdgf.dev
org.apache.poi.hdgf.exceptions
org.apache.poi.hdgf.extractor
org.apache.poi.hdgf.pointers
org.apache.poi.hdgf.streams
org.apache.poi.hemf.extractor
org.apache.poi.hemf.hemfplus.record
org.apache.poi.hemf.record
org.apache.poi.hmef
org.apache.poi.hmef.attribute
org.apache.poi.hmef.dev
org.apache.poi.hmef.extractor
org.apache.poi.hpbf
org.apache.poi.hpbf.dev
org.apache.poi.hpbf.extractor
org.apache.poi.hpbf.model
org.apache.poi.hpbf.model.qcbits
org.apache.poi.hpsf
org.apache.poi.hpsf.extractor
org.apache.poi.hpsf.wellknown
org.apache.poi.hslf.blip
org.apache.poi.hslf.data
org.apache.poi.hslf.dev
org.apache.poi.hslf.exceptions
org.apache.poi.hslf.extractor
org.apache.poi.hslf.model
org.apache.poi.hslf.model.textproperties
org.apache.poi.hslf.record
org.apache.poi.hslf.usermodel
org.apache.poi.hslf.util
org.apache.poi.hsmf
org.apache.poi.hsmf.datatypes
org.apache.poi.hsmf.dev
org.apache.poi.hsmf.exceptions
org.apache.poi.hsmf.extractor
org.apache.poi.hsmf.parsers
org.apache.poi.hssf
org.apache.poi.hssf.converter
org.apache.poi.hssf.dev
org.apache.poi.hssf.eventmodel
org.apache.poi.hssf.eventusermodel
org.apache.poi.hssf.eventusermodel.dummyrecord
org.apache.poi.hssf.extractor
org.apache.poi.hssf.model
org.apache.poi.hssf.record
org.apache.poi.hssf.record.aggregates
org.apache.poi.hssf.record.cf
org.apache.poi.hssf.record.chart
org.apache.poi.hssf.record.common
org.apache.poi.hssf.record.cont
org.apache.poi.hssf.record.crypto
org.apache.poi.hssf.record.pivottable
org.apache.poi.hssf.usermodel
org.apache.poi.hssf.usermodel.helpers
org.apache.poi.hssf.util
org.apache.poi.hwmf.draw
org.apache.poi.hwmf.record
org.apache.poi.hwmf.usermodel
org.apache.poi.hwpf
org.apache.poi.hwpf.converter
org.apache.poi.hwpf.dev
org.apache.poi.hwpf.extractor
org.apache.poi.hwpf.model
org.apache.poi.hwpf.model.io
org.apache.poi.hwpf.model.types
org.apache.poi.hwpf.sprm
org.apache.poi.hwpf.usermodel
org.apache.poi.ooxml
org.apache.poi.openxml4j.exceptions
org.apache.poi.openxml4j.opc
org.apache.poi.openxml4j.opc.internal
org.apache.poi.openxml4j.opc.internal.marshallers
org.apache.poi.openxml4j.opc.internal.unmarshallers
org.apache.poi.openxml4j.util
org.apache.poi.poifs.common
org.apache.poi.poifs.crypt
org.apache.poi.poifs.crypt.agile
org.apache.poi.poifs.crypt.binaryrc4
org.apache.poi.poifs.crypt.cryptoapi
org.apache.poi.poifs.crypt.dsig
org.apache.poi.poifs.crypt.dsig.facets
org.apache.poi.poifs.crypt.dsig.services
org.apache.poi.poifs.crypt.standard
org.apache.poi.poifs.crypt.temp
org.apache.poi.poifs.crypt.xor
org.apache.poi.poifs.dev
org.apache.poi.poifs.eventfilesystem
org.apache.poi.poifs.filesystem
org.apache.poi.poifs.macros
org.apache.poi.poifs.nio
org.apache.poi.poifs.property
org.apache.poi.poifs.storage
org.apache.poi.sl.draw
org.apache.poi.sl.draw.binding
org.apache.poi.sl.draw.geom
org.apache.poi.sl.image
org.apache.poi.sl.usermodel
org.apache.poi.ss
org.apache.poi.ss.extractor
org.apache.poi.ss.format
org.apache.poi.ss.formula
org.apache.poi.ss.formula.atp
org.apache.poi.ss.formula.constant
org.apache.poi.ss.formula.eval
org.apache.poi.ss.formula.eval.forked
org.apache.poi.ss.formula.function
org.apache.poi.ss.formula.functions
org.apache.poi.ss.formula.ptg
org.apache.poi.ss.formula.udf
org.apache.poi.ss.usermodel
org.apache.poi.ss.usermodel.charts
org.apache.poi.ss.usermodel.helpers
org.apache.poi.ss.util
org.apache.poi.ss.util.cellwalk
org.apache.poi.util
org.apache.poi.wp.usermodel
org.apache.poi.xdgf.exceptions
org.apache.poi.xdgf.extractor
org.apache.poi.xdgf.geom
org.apache.poi.xdgf.usermodel
org.apache.poi.xdgf.usermodel.section
org.apache.poi.xdgf.usermodel.section.geometry
org.apache.poi.xdgf.usermodel.shape
org.apache.poi.xdgf.usermodel.shape.exceptions
org.apache.poi.xdgf.util
org.apache.poi.xdgf.xml
org.apache.poi.xslf.extractor
org.apache.poi.xslf.model
org.apache.poi.xslf.usermodel
org.apache.poi.xslf.util
org.apache.poi.xssf
org.apache.poi.xssf.binary
org.apache.poi.xssf.eventusermodel
org.apache.poi.xssf.extractor
org.apache.poi.xssf.model
org.apache.poi.xssf.streaming
org.apache.poi.xssf.usermodel
org.apache.poi.xssf.usermodel.charts
org.apache.poi.xssf.usermodel.extensions
org.apache.poi.xssf.usermodel.helpers
org.apache.poi.xssf.util
org.apache.poi.xwpf.extractor
org.apache.poi.xwpf.model
org.apache.poi.xwpf.usermodel
org.apache.sling.adapter
org.apache.sling.api
org.apache.sling.api.adapter
org.apache.sling.api.auth
org.apache.sling.api.request
org.apache.sling.api.request.header
org.apache.sling.api.resource
org.apache.sling.api.resource.external
org.apache.sling.api.resource.mapping
org.apache.sling.api.resource.observation
org.apache.sling.api.resource.path
org.apache.sling.api.resource.runtime
org.apache.sling.api.resource.runtime.dto
org.apache.sling.api.scripting
org.apache.sling.api.security
org.apache.sling.api.servlets
org.apache.sling.api.wrappers
org.apache.sling.auth.core
org.apache.sling.auth.core.spi
org.apache.sling.caconfig
org.apache.sling.caconfig.annotation
org.apache.sling.caconfig.management
org.apache.sling.caconfig.management.multiplexer
org.apache.sling.caconfig.resource
org.apache.sling.caconfig.resource.spi
org.apache.sling.caconfig.spi
org.apache.sling.caconfig.spi.metadata
org.apache.sling.commons.auth
org.apache.sling.commons.auth.spi
org.apache.sling.commons.classloader
org.apache.sling.commons.compiler
org.apache.sling.commons.contentdetection
org.apache.sling.commons.html
org.apache.sling.commons.json
org.apache.sling.commons.json.http
org.apache.sling.commons.json.io
org.apache.sling.commons.json.jcr
org.apache.sling.commons.json.sling
org.apache.sling.commons.json.util
org.apache.sling.commons.json.xml
org.apache.sling.commons.log.logback
org.apache.sling.commons.log.logback.webconsole
org.apache.sling.commons.metrics
org.apache.sling.commons.mime
org.apache.sling.commons.osgi
org.apache.sling.commons.osgi.bundleversion
org.apache.sling.commons.scheduler
org.apache.sling.commons.threads
org.apache.sling.commons.threads.jmx
org.apache.sling.discovery
org.apache.sling.discovery.commons
org.apache.sling.discovery.commons.providers
org.apache.sling.discovery.commons.providers.base
org.apache.sling.discovery.commons.providers.spi
org.apache.sling.discovery.commons.providers.spi.base
org.apache.sling.discovery.commons.providers.util
org.apache.sling.distribution
org.apache.sling.distribution.agent
org.apache.sling.distribution.agent.spi
org.apache.sling.distribution.common
org.apache.sling.distribution.event
org.apache.sling.distribution.log.spi
org.apache.sling.distribution.packaging
org.apache.sling.distribution.queue
org.apache.sling.distribution.queue.spi
org.apache.sling.distribution.serialization
org.apache.sling.distribution.transport
org.apache.sling.distribution.util
org.apache.sling.engine
org.apache.sling.engine.auth
org.apache.sling.engine.jmx
org.apache.sling.engine.servlets
org.apache.sling.event.dea
org.apache.sling.event.jobs
org.apache.sling.event.jobs.consumer
org.apache.sling.event.jobs.jmx
org.apache.sling.featureflags
org.apache.sling.hapi
org.apache.sling.hapi.sightly
org.apache.sling.hc.api
org.apache.sling.hc.api.execution
org.apache.sling.hc.util
org.apache.sling.i18n
org.apache.sling.jcr.api
org.apache.sling.jcr.base
org.apache.sling.jcr.base.util
org.apache.sling.jcr.contentloader
org.apache.sling.jcr.registration
org.apache.sling.jcr.repoinit
org.apache.sling.jcr.resource.api
org.apache.sling.models.annotations
org.apache.sling.models.annotations.injectorspecific
org.apache.sling.models.annotations.via
org.apache.sling.models.export.spi
org.apache.sling.models.factory
org.apache.sling.models.jacksonexporter
org.apache.sling.models.spi
org.apache.sling.models.spi.injectorspecific
org.apache.sling.provisioning.model
org.apache.sling.provisioning.model.io
org.apache.sling.repoinit.parser.operations
org.apache.sling.resource.collection
org.apache.sling.resourceaccesssecurity
org.apache.sling.resourcemerger.api
org.apache.sling.resourcemerger.spi
org.apache.sling.rewriter
org.apache.sling.runmode
org.apache.sling.scripting.api
org.apache.sling.scripting.api.resource
org.apache.sling.scripting.core
org.apache.sling.scripting.core.servlet
org.apache.sling.scripting.jsp.taglib
org.apache.sling.scripting.jsp.taglib.tei
org.apache.sling.scripting.jsp.util
org.apache.sling.scripting.sightly
org.apache.sling.scripting.sightly.compiler
org.apache.sling.scripting.sightly.compiler.backend
org.apache.sling.scripting.sightly.compiler.commands
org.apache.sling.scripting.sightly.compiler.expression
org.apache.sling.scripting.sightly.compiler.expression.nodes
org.apache.sling.scripting.sightly.compiler.util
org.apache.sling.scripting.sightly.engine
org.apache.sling.scripting.sightly.extension
org.apache.sling.scripting.sightly.java.compiler
org.apache.sling.scripting.sightly.pojo
org.apache.sling.scripting.sightly.render
org.apache.sling.scripting.sightly.use
org.apache.sling.serviceusermapping
org.apache.sling.servlets.post
org.apache.sling.servlets.resolver.jmx
org.apache.sling.settings
org.apache.sling.sitemap
org.apache.sling.sitemap.builder
org.apache.sling.sitemap.builder.extensions
org.apache.sling.sitemap.spi.builder
org.apache.sling.sitemap.spi.common
org.apache.sling.sitemap.spi.generator
org.apache.sling.spi.resource.provider
org.apache.sling.tenant
org.apache.sling.tenant.spi
org.apache.sling.xss
org.apache.taglibs.standard
org.apache.taglibs.standard.functions
org.apache.taglibs.standard.resources
org.apache.taglibs.standard.tag.common.core
org.apache.taglibs.standard.tag.common.fmt
org.apache.taglibs.standard.tag.common.sql
org.apache.taglibs.standard.tag.rt.core
org.apache.taglibs.standard.tag.rt.fmt
org.apache.taglibs.standard.tag.rt.sql
org.apache.taglibs.standard.tei
org.apache.taglibs.standard.tlv
org.apache.tika
org.apache.tika.concurrent
org.apache.tika.config
org.apache.tika.detect
org.apache.tika.embedder
org.apache.tika.exception
org.apache.tika.extractor
org.apache.tika.fork
org.apache.tika.io
org.apache.tika.language
org.apache.tika.language.detect
org.apache.tika.language.translate
org.apache.tika.metadata
org.apache.tika.mime
org.apache.tika.parser
org.apache.tika.parser.apple
org.apache.tika.parser.asm
org.apache.tika.parser.audio
org.apache.tika.parser.captioning
org.apache.tika.parser.captioning.tf
org.apache.tika.parser.chm
org.apache.tika.parser.chm.accessor
org.apache.tika.parser.chm.assertion
org.apache.tika.parser.chm.core
org.apache.tika.parser.chm.exception
org.apache.tika.parser.chm.lzx
org.apache.tika.parser.code
org.apache.tika.parser.crypto
org.apache.tika.parser.ctakes
org.apache.tika.parser.dbf
org.apache.tika.parser.dif
org.apache.tika.parser.digest
org.apache.tika.parser.dwg
org.apache.tika.parser.envi
org.apache.tika.parser.epub
org.apache.tika.parser.executable
org.apache.tika.parser.external
org.apache.tika.parser.feed
org.apache.tika.parser.font
org.apache.tika.parser.gdal
org.apache.tika.parser.geo.topic
org.apache.tika.parser.geo.topic.gazetteer
org.apache.tika.parser.geoinfo
org.apache.tika.parser.grib
org.apache.tika.parser.hdf
org.apache.tika.parser.html
org.apache.tika.parser.image
org.apache.tika.parser.image.xmp
org.apache.tika.parser.iptc
org.apache.tika.parser.isatab
org.apache.tika.parser.iwork
org.apache.tika.parser.iwork.iwana
org.apache.tika.parser.jdbc
org.apache.tika.parser.journal
org.apache.tika.parser.jpeg
org.apache.tika.parser.mail
org.apache.tika.parser.mat
org.apache.tika.parser.mbox
org.apache.tika.parser.microsoft
org.apache.tika.parser.microsoft.ooxml
org.apache.tika.parser.microsoft.ooxml.xps
org.apache.tika.parser.microsoft.ooxml.xslf
org.apache.tika.parser.microsoft.ooxml.xwpf
org.apache.tika.parser.microsoft.ooxml.xwpf.ml2006
org.apache.tika.parser.microsoft.xml
org.apache.tika.parser.mp3
org.apache.tika.parser.mp4
org.apache.tika.parser.ner
org.apache.tika.parser.ner.corenlp
org.apache.tika.parser.ner.grobid
org.apache.tika.parser.ner.mitie
org.apache.tika.parser.ner.nltk
org.apache.tika.parser.ner.opennlp
org.apache.tika.parser.ner.regex
org.apache.tika.parser.netcdf
org.apache.tika.parser.ocr
org.apache.tika.parser.odf
org.apache.tika.parser.opendocument
org.apache.tika.parser.pdf
org.apache.tika.parser.pkg
org.apache.tika.parser.pot
org.apache.tika.parser.prt
org.apache.tika.parser.recognition
org.apache.tika.parser.recognition.tf
org.apache.tika.parser.rtf
org.apache.tika.parser.sentiment
org.apache.tika.parser.strings
org.apache.tika.parser.txt
org.apache.tika.parser.utils
org.apache.tika.parser.video
org.apache.tika.parser.wordperfect
org.apache.tika.parser.xml
org.apache.tika.sax
org.apache.tika.sax.xpath
org.apache.tika.utils
org.apache.xmlbeans
org.apache.xmlbeans.impl.common
org.apache.xmlbeans.impl.config
org.apache.xmlbeans.impl.inst2xsd
org.apache.xmlbeans.impl.inst2xsd.util
org.apache.xmlbeans.impl.jam
org.apache.xmlbeans.impl.jam.annotation
org.apache.xmlbeans.impl.jam.internal
org.apache.xmlbeans.impl.jam.internal.classrefs
org.apache.xmlbeans.impl.jam.internal.elements
org.apache.xmlbeans.impl.jam.internal.javadoc
org.apache.xmlbeans.impl.jam.internal.parser
org.apache.xmlbeans.impl.jam.internal.reflect
org.apache.xmlbeans.impl.jam.mutable
org.apache.xmlbeans.impl.jam.provider
org.apache.xmlbeans.impl.jam.visitor
org.apache.xmlbeans.impl.jam.xml
org.apache.xmlbeans.impl.regex
org.apache.xmlbeans.impl.richParser
org.apache.xmlbeans.impl.schema
org.apache.xmlbeans.impl.soap
org.apache.xmlbeans.impl.store
org.apache.xmlbeans.impl.tool
org.apache.xmlbeans.impl.util
org.apache.xmlbeans.impl.validator
org.apache.xmlbeans.impl.values
org.apache.xmlbeans.impl.xb.ltgfmt
org.apache.xmlbeans.impl.xb.ltgfmt.impl
org.apache.xmlbeans.impl.xb.substwsdl
org.apache.xmlbeans.impl.xb.substwsdl.impl
org.apache.xmlbeans.impl.xb.xmlconfig
org.apache.xmlbeans.impl.xb.xmlconfig.impl
org.apache.xmlbeans.impl.xb.xmlschema
org.apache.xmlbeans.impl.xb.xmlschema.impl
org.apache.xmlbeans.impl.xb.xsdownload
org.apache.xmlbeans.impl.xb.xsdownload.impl
org.apache.xmlbeans.impl.xb.xsdschema
org.apache.xmlbeans.impl.xb.xsdschema.impl
org.apache.xmlbeans.impl.xpathgen
org.apache.xmlbeans.impl.xsd2inst
org.apache.xmlbeans.soap
org.apache.xmlbeans.xml.stream
org.apache.xmlbeans.xml.stream.events
org.apache.xmlbeans.xml.stream.utils
org.bson
org.bson.assertions
org.bson.codecs
org.bson.codecs.configuration
org.bson.codecs.pojo
org.bson.codecs.pojo.annotations
org.bson.conversions
org.bson.diagnostics
org.bson.internal
org.bson.io
org.bson.json
org.bson.types
org.bson.util
org.ccil.cowan.tagsoup
org.eclipse.jetty.client
org.eclipse.jetty.client.api
org.eclipse.jetty.client.http
org.eclipse.jetty.client.jmx
org.eclipse.jetty.client.util
org.eclipse.jetty.http
org.eclipse.jetty.http.pathmap
org.eclipse.jetty.io
org.eclipse.jetty.io.ssl
org.eclipse.jetty.jmx
org.eclipse.jetty.security
org.eclipse.jetty.server
org.eclipse.jetty.server.handler
org.eclipse.jetty.server.handler.gzip
org.eclipse.jetty.server.handler.jmx
org.eclipse.jetty.server.jmx
org.eclipse.jetty.server.nio
org.eclipse.jetty.server.session
org.eclipse.jetty.servlet
org.eclipse.jetty.servlet.jmx
org.eclipse.jetty.servlet.listener
org.eclipse.jetty.util
org.eclipse.jetty.util.annotation
org.eclipse.jetty.util.component
org.eclipse.jetty.util.log
org.eclipse.jetty.util.preventers
org.eclipse.jetty.util.resource
org.eclipse.jetty.util.security
org.eclipse.jetty.util.ssl
org.eclipse.jetty.util.statistic
org.eclipse.jetty.util.thread
org.eclipse.jetty.util.thread.strategy
org.eclipse.jetty.webapp
org.eclipse.jetty.websocket.api
org.eclipse.jetty.websocket.api.annotations
org.eclipse.jetty.websocket.api.extensions
org.eclipse.jetty.websocket.api.util
org.eclipse.jetty.websocket.client
org.eclipse.jetty.websocket.client.io
org.eclipse.jetty.websocket.client.masks
org.eclipse.jetty.websocket.common
org.eclipse.jetty.websocket.common.events
org.eclipse.jetty.websocket.common.events.annotated
org.eclipse.jetty.websocket.common.extensions
org.eclipse.jetty.websocket.common.extensions.compress
org.eclipse.jetty.websocket.common.extensions.fragment
org.eclipse.jetty.websocket.common.extensions.identity
org.eclipse.jetty.websocket.common.frames
org.eclipse.jetty.websocket.common.io
org.eclipse.jetty.websocket.common.io.http
org.eclipse.jetty.websocket.common.io.payload
org.eclipse.jetty.websocket.common.message
org.eclipse.jetty.websocket.common.scopes
org.eclipse.jetty.websocket.common.util
org.eclipse.jetty.websocket.server
org.eclipse.jetty.websocket.server.pathmap
org.eclipse.jetty.websocket.servlet
org.eclipse.jetty.xml
org.joda.time
org.joda.time.base
org.joda.time.chrono
org.joda.time.convert
org.joda.time.field
org.joda.time.format
org.joda.time.tz
org.json
org.kohsuke.rngom.rngparser.ast.builder
org.kohsuke.rngom.rngparser.ast.om
org.kohsuke.rngom.rngparser.ast.util
org.kohsuke.rngom.rngparser.digested
org.kohsuke.rngom.rngparser.nc
org.kohsuke.rngom.rngparser.parse
org.kohsuke.rngom.rngparser.parse.compact
org.kohsuke.rngom.rngparser.parse.host
org.kohsuke.rngom.rngparser.parse.xml
org.mozilla.classfile
org.mozilla.javascript
org.mozilla.javascript.annotations
org.mozilla.javascript.ast
org.mozilla.javascript.commonjs.module
org.mozilla.javascript.commonjs.module.provider
org.mozilla.javascript.debug
org.mozilla.javascript.jdk13
org.mozilla.javascript.jdk15
org.mozilla.javascript.json
org.mozilla.javascript.optimizer
org.mozilla.javascript.regexp
org.mozilla.javascript.resources
org.mozilla.javascript.serialize
org.mozilla.javascript.tools
org.mozilla.javascript.tools.debugger
org.mozilla.javascript.tools.debugger.treetable
org.mozilla.javascript.tools.idswitch
org.mozilla.javascript.tools.jsc
org.mozilla.javascript.tools.resources
org.mozilla.javascript.tools.shell
org.mozilla.javascript.typedarrays
org.mozilla.javascript.v8dtoa
org.mozilla.javascript.xml
org.mozilla.javascript.xmlimpl
org.openxmlformats.schemas.drawingml.x2006.chart
org.openxmlformats.schemas.drawingml.x2006.main
org.openxmlformats.schemas.drawingml.x2006.picture
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing
org.openxmlformats.schemas.drawingml.x2006.wordprocessingDrawing
org.openxmlformats.schemas.officeDocument.x2006.customProperties
org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes
org.openxmlformats.schemas.officeDocument.x2006.extendedProperties
org.openxmlformats.schemas.officeDocument.x2006.relationships
org.openxmlformats.schemas.presentationml.x2006.main
org.openxmlformats.schemas.spreadsheetml.x2006.main
org.openxmlformats.schemas.wordprocessingml.x2006.main
org.osgi.jmx
org.osgi.jmx.framework
org.osgi.jmx.framework.wiring
org.osgi.jmx.service.cm
org.osgi.jmx.service.permissionadmin
org.osgi.jmx.service.provisioning
org.osgi.jmx.service.useradmin
org.osgi.service.cm
org.osgi.service.component
org.osgi.service.component.runtime
org.osgi.service.component.runtime.dto
org.osgi.service.coordinator
org.osgi.service.event
org.osgi.service.http
org.osgi.service.http.context
org.osgi.service.http.runtime
org.osgi.service.http.runtime.dto
org.osgi.service.http.whiteboard
org.osgi.service.log
org.osgi.service.metatype
org.osgi.util.converter
org.osgi.util.function
org.osgi.util.promise
org.scribe.builder
org.scribe.builder.api
org.scribe.exceptions
org.scribe.extractors
org.scribe.model
org.scribe.oauth
org.scribe.services
org.scribe.utils
org.slf4j
org.slf4j.event
org.slf4j.helpers
org.slf4j.impl
org.slf4j.spi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment