How to add sling pipes in the project
Hi AEM Community,
II'm looking for insights on adding Sling Pipes in the project using pom.xml in AEM Cloud.
Added below dependencies in all/pom.xml, tenant/pom.xml and root/pom.xml
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.pipes</artifactId>
<version>4.5.0</version>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.query</artifactId>
<version>4.0.4</version>
</dependency>
Added below com.adobe.dx in tentant.pom and root.pom
<dependency>
<groupId>com.adobe.dx</groupId>
<artifactId>content</artifactId>
<version>0.0.10</version>
</dependency>
Installed script by manually downloading(since not downloading via pom) adobe-dx/apps/scripts/pipe and executing mvn clean install.
Getting forbidden when accessing http://localhost:4502/apps/dx/scripts/exec.json/ .
Please share your strategies and experiences in this area!