Hi @skattamuri
Have you updated the uber jar version to 6.5.11 ? Also are you getting error in compile time or runtime?
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>uber-jar</artifactId>
<version>6.5.11</version>
<scope>provided</scope>
</dependency>
Also upgrade the JAXB Maven dependency to latest version.
<!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.3</version>
</dependency>
Thanks!