Export New Component to Server | Community
Skip to main content
April 21, 2021

Export New Component to Server

  • April 21, 2021
  • 4 replies
  • 3029 views

Hi,

We have developed a new component, and we are trying to export it to server. Until now we have used AEM sync(VS code extension) to sync to AEM Server. But, when trying to sync core folder it does not work, because it does not have a jcr:root folder. How should we sync the core folder to server? 

We would really appreciate your help on this!

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

4 replies

shelly-goel
Adobe Employee
Adobe Employee
April 21, 2021

@ad-engineer  Core is supposed to hold only the java classes and on maven build these will be compiled into an OSGi bundle deployed as part of 'all' package. All the other component files should go into apps folder which you would be able to sync.

April 21, 2021

@shelly-goel  thanks for your reply! Yes, but we are trying to export just the core. If we get "all" package that will get the content too, right? We can not override content on the server. We need somehow to get just the core. Any idea? Thanks!

shelly-goel
Adobe Employee
Adobe Employee
April 21, 2021

@ad-engineer- You can deploy core directly on the server using maven deploy command on core folder, no need to sync

mvn clean install -PautoInstallBundle

or build the jar and manually install jar present under target folder to AEM

Nikhil-Kumar
Community Advisor
Community Advisor
April 21, 2021

@ad-engineer 

Are you looking for something like filevault ?
Please refer this link, it shows the push and pull of files in Intellij https://aemsimplifiedbynikhil.wordpress.com/2020/08/14/develop-aem-project-with-intellij-and-using-filevault-connection-aem-6-5-archetype-22/ 

Thanks,
Nikhil

 

April 21, 2021
@nikhil-kumar thanks but i am looking for a maven command that would deploy bundle
Asutosh_Jena_
Community Advisor
Community Advisor
April 22, 2021

Hi @ad-engineer 

 

Here are the commands that will be usefule during deployment.

 

In your use case here, please use the highlighted command below.

 

To build all the modules and deploy the all package to a local instance of AEM, run in the project root directory the following command:
mvn clean install -PautoInstallSinglePackage


deploy only the bundle to the author:
mvn clean install -PautoInstallBundle


deploy only a single content package, run in the sub-module directory (i.e ui.apps)
mvn clean install -PautoInstallPackage

 

The same information will be available in every project README.md file from root directory. You should be able to get the same information from there.

 

Hope this helps!

Thanks