How many ways are to compile and run Adobe CQ5 ?
Using Apache Maven i know , but in our project they are not following maven architecture is there any other way to build and compile.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The standard way to integrate Java code into CQ5 is via OSGi bundles, which can be built with any suitable tool, there’s nothing special about them. An OSGi bundle is just a java jar file with some additional headers in MANIFEST.MF, so in a pinch you could even build them with a text editor and the javac and jar tools.
CQ5 applications also uses scripts and content stored in the CRX content repository, if you had no external tools you could create that content using HTTP requests or CQ5’s CRXDE explorer, and package that content using CQ5’s Package Manager.
Various Maven plugins help make this easier, but they are not required to build CQ5 applications.