Packages are not appearing on the Package Manager even after successful build in AEM Version 6.4.0 | Community
Skip to main content
Level 3
October 5, 2020
Solved

Packages are not appearing on the Package Manager even after successful build in AEM Version 6.4.0

  • October 5, 2020
  • 2 replies
  • 1828 views

Hi,

 

I am trying to install 2 packages on AEM Package manager Console: CIF Connector and CIF Core Components (latest version)

 

After a successful build with the command: mvn -PautoInstallPackage -Padobe-public clean install. Packages are not appearing on the Package Manager. Please suggest what can be the reason.

 

Thanks,

Heena

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Jineet_Vora

Hello @heena91,

There could be many reasons for this for example you can check if the modules you're trying to install are a part of parent pom.xml:

<modules> <module>core</module> <module>ng-app</module> <module>ui.apps</module> <module>ui.content</module> <module>ui.permissions</module> <module>oak-index-definitions</module> </modules>

Also check if the profile autoInstallPackage and adobe-public inside ui.apps has a 'install' goal defined. Please re-run the maven command using debug mode example 'mvn -X -PautoInstallPackage -Padobe-public clean install' to check what is happening.

Jineet

2 replies

Jineet_Vora
Community Advisor and Adobe Champion
Jineet_VoraCommunity Advisor and Adobe ChampionAccepted solution
Community Advisor and Adobe Champion
October 5, 2020

Hello @heena91,

There could be many reasons for this for example you can check if the modules you're trying to install are a part of parent pom.xml:

<modules> <module>core</module> <module>ng-app</module> <module>ui.apps</module> <module>ui.content</module> <module>ui.permissions</module> <module>oak-index-definitions</module> </modules>

Also check if the profile autoInstallPackage and adobe-public inside ui.apps has a 'install' goal defined. Please re-run the maven command using debug mode example 'mvn -X -PautoInstallPackage -Padobe-public clean install' to check what is happening.

Jineet

Nikhil-Kumar
Community Advisor
Community Advisor
October 5, 2020

@heena91 

Was your build successfull? 
If it was can you try installing the package manually. As far as I know CIF core and connector packages don't have autoInstallPackage profile by default.
Try installing it manually once or add the profile.

Heena91Author
Level 3
October 5, 2020
Hi @nikhil-kumar ,I do not have any idea where I need to add profile, it should be in parent pom or folder/module specific pom, Can u please suggest.