Skip to content

Commit

Permalink
Feature/third party tools (#3)
Browse files Browse the repository at this point in the history
ACS Common, Netcentric ACL Tool and aem-groovy-console
  • Loading branch information
arunpatidar02 committed Jun 30, 2022
1 parent 4f36640 commit bb4ccec
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
37 changes: 37 additions & 0 deletions all/pom.xml
Expand Up @@ -61,6 +61,25 @@
<type>zip</type>
<target>/apps/aemlab-vendor-packages/application/install</target>
</embedded>
<!-- Tools -->
<embedded>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-content</artifactId>
<type>zip</type>
<target>/apps/aemlab-vendor-packages/application/install</target>
</embedded>
<embedded>
<groupId>biz.netcentric.cq.tools.accesscontroltool</groupId>
<artifactId>accesscontroltool-package</artifactId>
<type>zip</type>
<target>/apps/aemlab-vendor-packages/application/install</target>
</embedded>
<embedded>
<groupId>com.icfolson.aem.groovy.console</groupId>
<artifactId>aem-groovy-console</artifactId>
<type>zip</type>
<target>/apps/aemlab-vendor-packages/application/install</target>
</embedded>
</embeddeds>
<subPackages>
</subPackages>
Expand Down Expand Up @@ -177,5 +196,23 @@
<artifactId>core.wcm.components.config</artifactId>
<type>zip</type>
</dependency>

<!-- Tools -->
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-content</artifactId>
<version>${acs.commons.version}</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>biz.netcentric.cq.tools.accesscontroltool</groupId>
<artifactId>accesscontroltool-package</artifactId>
<type>zip</type>
</dependency>
<dependency>
<groupId>com.icfolson.aem.groovy.console</groupId>
<artifactId>aem-groovy-console</artifactId>
<type>zip</type>
</dependency>
</dependencies>
</project>
30 changes: 30 additions & 0 deletions pom.xml
Expand Up @@ -33,6 +33,9 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<aem.sdk.api>2021.2.4887.20210204T154817Z-210128</aem.sdk.api>
<componentGroupName>aemlab</componentGroupName>
<acs.commons.version>5.3.2</acs.commons.version>
<accesscontroltool.version>3.0.4</accesscontroltool.version>
<aem.groovy.console.version>15.1.0</aem.groovy.console.version>
</properties>

<build>
Expand Down Expand Up @@ -595,6 +598,33 @@ Bundle-DocURL:
<version>1.0.1</version>
<scope>test</scope>
</dependency>
<!-- ACS Commons -->
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-bundle</artifactId>
<version>${acs.commons.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-content</artifactId>
<version>${acs.commons.version}</version>
<type>content-package</type>
</dependency>
<!-- See: https://github.com/Netcentric/accesscontroltool -->
<dependency>
<groupId>biz.netcentric.cq.tools.accesscontroltool</groupId>
<artifactId>accesscontroltool-package</artifactId>
<version>${accesscontroltool.version}</version>
<type>zip</type>
</dependency>
<!-- See: https://github.com/icfnext/aem-groovy-console -->
<dependency>
<groupId>com.icfolson.aem.groovy.console</groupId>
<artifactId>aem-groovy-console</artifactId>
<type>zip</type>
<version>${aem.groovy.console.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit bb4ccec

Please sign in to comment.