Reputation: 11
Was trying to set-up my local environment to practice AEM dev concepts and installed the same version of jdk8 and crx 6.5 version.
When I try to instantiate the author jar, it's showing a FILENOTFOUND EXCEPTION.
I tried with different versions of AEM like 11,17 no clue to the problem
Please can somebody help! Thanks a lot in advance!
Upvotes: 1
Views: 3691
Reputation: 551
Dont try java17 as it is not supported by AEM yet. AEM 6.5 supports java8 and java11.
I am not sure what steps you are following to setup the local environment or why you are getting file not found exception. Below are some steps that are generally used to set up local dev environment for AEM on windows.
java -version
in command prompt and if you get the proper version then java is installed properly.mvn -v
in commmand prompt. If a proper version is displayed then maven is installed properly.java -jar aem-author-p4502.jar
. Depending on system configuration it may take few minutes to start.Upvotes: 1