Issues While Upgrading AEM to Service Pack 6.5.23.0 | Community
Skip to main content
Level 2
November 12, 2025
Solved

Issues While Upgrading AEM to Service Pack 6.5.23.0

  • November 12, 2025
  • 2 replies
  • 255 views

After installing latest service package 6.5.23.0
In console/bundles below bundle is installed state.
SARB Project - sarb-internet-site Bundleza.co.sarb.internet-site.core - Installed not active

 

org.apache.xmlbeans,version=[2.0,3) -- Cannot be resolved

 

can you pls, kindly share the details or reference links.

Thanks,
Nagendra

Best answer by muskaanchandwani

Hello @nagendrababu 

In AEM 6.5.23.0, the com.adobe.granite.poi bundle exports:

org.apache.xmlbeans, version=5.1.1

 

Your custom bundle za.co.sarb.internet-site.core is currently importing

org.apache.xmlbeans, version=[2.0,3)


To resolve :

  • Update your code (or dependencies) to use org.apache.xmlbeans version 5.1.1, which is what AEM 6.5.23 provides OOTB
  • In your OSGi bundle’s Import-Package statement (or Maven configuration), set:
    org.apache.xmlbeans;version="[5.1,6)"​

2 replies

giuseppebaglio
Level 10
November 12, 2025

If SARB core is your project repository, have you checked if org.apache.xmlbeans is listed as a dependency? If so, you should upload it to the version inside AEM.

 

Also, have you updated in your project pom.xml the dependency to match the new AEM version?

<!-- https://mvnrepository.com/artifact/com.adobe.aem/uber-jar -->
<dependency>
    <groupId>com.adobe.aem</groupId>
    <artifactId>uber-jar</artifactId>
    <version>6.5.23</version>
    <scope>provided</scope>
</dependency>

 

I don't have an AEM 6.5.23 instance to check myself, but in AEMasCS I can see version 5.1.1 of org.apache.xmlbeans:

org.apache.xmlbeans,version=5.1.1 from com.adobe.granite.poi (112)
org.apache.xmlbeans.impl.schema,version=5.1.1 from com.adobe.granite.poi (112)
org.apache.xmlbeans.impl.values,version=5.1.1 from com.adobe.granite.poi (112)

 

Level 2
November 18, 2025

Hi @giuseppebaglio Thank your for your response.
Due to some deprecated issues in code uber-jar is not updating. now I resolved the issues now it's uber-jar version is updating fine.

muskaanchandwani
Adobe Employee
muskaanchandwaniAdobe EmployeeAccepted solution
Adobe Employee
November 12, 2025

Hello @nagendrababu 

In AEM 6.5.23.0, the com.adobe.granite.poi bundle exports:

org.apache.xmlbeans, version=5.1.1

 

Your custom bundle za.co.sarb.internet-site.core is currently importing

org.apache.xmlbeans, version=[2.0,3)


To resolve :

  • Update your code (or dependencies) to use org.apache.xmlbeans version 5.1.1, which is what AEM 6.5.23 provides OOTB
  • In your OSGi bundle’s Import-Package statement (or Maven configuration), set:
    org.apache.xmlbeans;version="[5.1,6)"​
Level 2
November 18, 2025

Hi @muskaanchandwani Thanks for your prompt response.
Due to some deprecated issues in code uber-jar is not updating. now I resolved the issues now it's uber-jar version is updating fine.