From f101da7c0528e801c92952538a77e7e413480985 Mon Sep 17 00:00:00 2001 From: Francois Date: Mon, 15 Jan 2024 15:08:37 +0100 Subject: [PATCH] `aio-lib-osgi` added export instruction for auth package (#202) (#203) Recently we upgraded to 1.1.12 version of the sdk and started using com.adobe.aio.auth but we were not able to start our bundle on AEM since the artifact aio-lib-osgi is not exporting this package. Added this package in the export list so that the dependent bundles can access the classes of this package. Co-authored-by: Pulkit Gupta <92841386+pulguptaAdobe@users.noreply.github.com> --- aem/lib_osgi/src/main/bnd/aio-lib-osgi.bnd | 1 + 1 file changed, 1 insertion(+) diff --git a/aem/lib_osgi/src/main/bnd/aio-lib-osgi.bnd b/aem/lib_osgi/src/main/bnd/aio-lib-osgi.bnd index 46c46a6a..14aabd8c 100644 --- a/aem/lib_osgi/src/main/bnd/aio-lib-osgi.bnd +++ b/aem/lib_osgi/src/main/bnd/aio-lib-osgi.bnd @@ -32,6 +32,7 @@ Import-Package: \ com.fasterxml.jackson.databind.type;version="[2.9,3)",\ * Export-Package: com.adobe.aio.workspace;version="${project.version}";provide:=true,\ + com.adobe.aio.auth;version="${project.version}";provide:=true,\ com.adobe.aio.exception;version="${project.version}";provide:=true,\ com.adobe.aio.util;version="${project.version}";provide:=true,\ com.adobe.aio.ims;version="${project.version}";provide:=true,\