Hello @nagendraba3 ,
In case you are using AEM SDK for AEM v2025.4.20476.20250414T214138Z-250300, then can you just remove the embed of following from all/pom.xml:
<embedded>
<groupId>com.adobe.aem</groupId>
<artifactId>core-forms-components-af-apps</artifactId>
<type>zip</type>
<target>/apps/${appId}-vendor-packages/application/install</target>
</embedded>
and
<embedded>
<groupId>com.adobe.aem</groupId>
<artifactId>core-forms-components-af-core</artifactId>
<target>/apps/${appId}-vendor-packages/application/install</target>
</embedded>
Basically, now these are part of product, you are embedding versions:
<core.forms.components.version>2.0.76</core.forms.components.version>
<core.forms.components.af.version>2.0.76</core.forms.components.af.version>
Whereas with this sdk, 3.0.104 is available in product OOTB. Additionally either core pom.xml needs to be updated, one will need to update the range of import (bolded portion is the one that is added) or if its not being consumed in customization, then you can go ahead and remove the dependencies of artifacts core-forms-components-core and core-forms-components-af-core
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
<executions>
<execution>
<id>bnd-process</id>
<goals>
<goal>bnd-process</goal>
</goals>
<configuration>
<bnd><![CDATA[
Import-Package: javax.annotation;version=0.0.0,com.adobe.cq.forms.core.components.models.form;version="[5.0.0,6.0.0)",*
]]></bnd>
</configuration>
</execution>
</executions>
</plugin>
Also make sure older bundles of core components are uninstalled and trashed.