Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

Handy Commands For Developers | AEM Community Blog Seeding

Avatar

Administrator

BlogImage.jpg

Handy Commands For Developers by Ashish Mishra

Abstract

Maven
Scenario 1: Start the AEM in debug mode
java -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=127.0.0.1:8765 -XX:+HeapDumpOnOutOfMemoryError -XX:MaxPermSize=256M -Xmx1024m -Dorg.apache.sling.commons.log.level=INFO -jar cq-quickstart-6.5.0.jar

Scenario 2: Build and deploy AEM
mvn -PautoInstallPackage -Padobe-public clean install

Scenario 3: Start the Spring boot application
mvn clean spring-boot:run

Scenario 4: Start Spring boot in specific mode
mvn clean spring-boot:run -Dspring-boot.run.profiles=local

Scenario 5: Skip J-Unit test
-Dmaven.test.skip=true

Scenario 6: Start Spring boot in debug mode and also run a specific profile and skip j unit test compilation
mvn spring-boot:run -Dspring-boot.run.jvmArguments="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005" -Dspring-boot.run.profiles=local -Dmaven.test.skip=true

Read Full Blog

Handy Commands For Developers

Q&A

Please use this thread to ask the related questions.



Kautuk Sahni
2 Replies

Avatar

Community Advisor
Scenario 2: Build and deploy AEM
mvn -PautoInstallPackage -Padobe-public clean install

this command itself can be modified as
mvn -PautoInstallPackage -Padobe-public clean install -DskipTests

to skip the test on deployment.