Skip to content

Commit

Permalink
Merge pull request #11 from orbinson/feature/support-aem-on-prem
Browse files Browse the repository at this point in the history
Support AEM 6.5.10+ and AEMaaCS
  • Loading branch information
royteeuwen authored Dec 25, 2022
2 parents f8c0d73 + e3965ed commit be8df17
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ scripts are included in the package for reference.

## Compatibility

We only support AEM as a Cloud Service. For AEM on premises, check the original [aem-groovy-console](https://github.com/CID15/aem-groovy-console)
Supported AEM versions are AEM 6.5.10+ and AEM as a Cloud Service latest SDK version.

To install the AEM Groovy Console on older AEM versions check the original project [aem-groovy-console](https://github.com/CID15/aem-groovy-console)
## Installation

1. [Download the console package](https://github.com/orbinson/aem-groovy-console/releases/download/18.0.0/aem-groovy-console-all-17.0.0.zip).
Expand Down
3 changes: 2 additions & 1 deletion bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@
<!-- SDK included last to allow other dependencies to override included versions -->
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>aem-sdk-api</artifactId>
<artifactId>uber-jar</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
13 changes: 6 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@
<vault.password>admin</vault.password>
<package.group>aem-groovy-console</package.group>

<!-- versions -->
<aem.sdk.version>2022.10.9398.20221020T071514Z-220800</aem.sdk.version>
<!-- AEM minimum version -->
<aem.version>6.5.10</aem.version>
</properties>

<profiles>
Expand Down Expand Up @@ -435,11 +435,10 @@

<!-- SDK included last to allow other dependencies to override included versions -->
<dependency>
<groupId>io.wcm.maven</groupId>
<artifactId>io.wcm.maven.aem-cloud-dependencies</artifactId>
<version>${aem.sdk.version}.0000</version>
<type>pom</type>
<scope>import</scope>
<groupId>com.adobe.aem</groupId>
<artifactId>uber-jar</artifactId>
<version>${aem.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
5 changes: 3 additions & 2 deletions ui.apps/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand Down Expand Up @@ -62,7 +63,7 @@
</dependency>
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>aem-sdk-api</artifactId>
<artifactId>uber-jar</artifactId>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion ui.content/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
</dependency>
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>aem-sdk-api</artifactId>
<artifactId>uber-jar</artifactId>
</dependency>
</dependencies>
</project>

0 comments on commit be8df17

Please sign in to comment.