Currently we getting following error when we install the AEM Groovy Console package 17.x.x which compatiable with Cloud Service but local env its working Expect issue org.cid15.aem.groovy.console.job.consumer.GroovyConsoleScheduledJobConsumer component status is "satisfied"
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
You can install groovy through
https://github.com/valtech/aem-easy-content-upgrade
Example : https://github.com/arunpatidar02/aemaacs-aemlab/commit/3325b65bec062a549139156bc3584c743db67ff7
Installing groovy using https://github.com/CID15/aem-groovy-console in AEMaaCS does not work.
Hi @varaande ,
You should embed it into the container module (all) like below
<-- In the embed section --->
<embedded>
<groupId>org.cid15.aem.groovy.console</groupId>
<artifactId>aem-groovy-console-all</artifactId>
<type>zip</type>
<target>/apps/aem-groovy-console-packages/content/install</target>
</embedded>
<-- In the dependency section -->
<!-- https://mvnrepository.com/artifact/org.cid15.aem.groovy.console/aem-groovy-console-all -->
<dependency>
<groupId>org.cid15.aem.groovy.console</groupId>
<artifactId>aem-groovy-console-all</artifactId>
<version>${groovyconsole.version}</version>
<type>zip</type>
</dependency>
Also, the version I only see available in the maven repo is 17.0.0, can you cross-check the version? (In your error I see version 17.0.12)
Make sure this path is covered in filter.xml.
Hope this helps!
Regards,
Nitesh
Hi,
You can install groovy through
https://github.com/valtech/aem-easy-content-upgrade
Example : https://github.com/arunpatidar02/aemaacs-aemlab/commit/3325b65bec062a549139156bc3584c743db67ff7
Installing groovy using https://github.com/CID15/aem-groovy-console in AEMaaCS does not work.
Views
Like
Replies