Skip to content

Commit

Permalink
Config plugin bump
Browse files Browse the repository at this point in the history
  • Loading branch information
krystian-panek-vmltech committed Jan 3, 2023
1 parent 5448ab4 commit 45cf850
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions docs/launcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Simply, using e.g bash script - download the GAP launcher run it with regular GA

| GAP Launcher | AEM Project Archetype |
|--------------|-----------------------|
| 16.0.4 | 39 |
| 16.0.5 | 39 |

See also [plugin compatibility](../README.MD#compatibility).

Expand Down Expand Up @@ -60,7 +60,7 @@ Choose one of the available options:
A) Gradle files added to the project directly (recommended):

```shell
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.4/gap.jar && java -jar gap.jar && rm gap.jar
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.5/gap.jar && java -jar gap.jar && rm gap.jar
```
Consequences:

Expand All @@ -80,7 +80,7 @@ Consequences:
* on a fresh setup, cloning both code repositories is required to set up an automated AEM environment.

```shell
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.4/gap.jar && java -jar gap.jar --app-dir=maven && rm gap.jar
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.5/gap.jar && java -jar gap.jar --app-dir=maven && rm gap.jar
```

Demo (to play again refresh the page):
Expand Down Expand Up @@ -238,7 +238,7 @@ It is using `sh gradlew props` task to provide AEM instance files details, howev
To set up and turn on AEM instance(s) by single command, consider running:

```bash
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.4/gap.jar \
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.5/gap.jar \
&& java -jar gap.jar --save-props \
-PfileTransfer.user=foo -PfileTransfer.password=pass \
-PlocalInstance.quickstart.jarUrl=http://company-share.com/aem/cq-quickstart-6.5.0.jar \
Expand All @@ -259,7 +259,7 @@ sh gradlew down
For deploying to AEM instance CRX package from any source consider using command:

```shell
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.4/gap.jar && java -jar gap.jar && rm gap.jar
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.5/gap.jar && java -jar gap.jar && rm gap.jar
sh gradlew instanceDeploy -Pinstance.author -Pinstance.deploy.packageUrl=https://github.com/neva-dev/felix-search-webconsole-plugin/releases/download/search-webconsole-plugin-1.3.0/search-webconsole-plugin-1.3.0.jar
```

Expand All @@ -277,7 +277,7 @@ Also instead of URL, dependency notation could be used to resolve package from M
To interactively monitor logs of any AEM instances using task [`instanceTail`](instance-plugin.md#task-instancetail), consider running command:

```bash
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.4/gap.jar \
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.5/gap.jar \
&& java -jar gap.jar --save-props \
-Pinstance.dev-author.httpUrl=http://foo:[email protected]:4502 \
-Pinstance.dev-publish.httpUrl=http://foo:[email protected]:4503 \
Expand All @@ -292,7 +292,7 @@ Assuming instance running at URL *http://localhost:4502* or *http://localhost:45
Consider appending parameter e.g `-Pinstance.list=http://admin:admin@localhost:4502` to customize the instance to work with.

```bash
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.4/gap.jar && java -jar gap.jar && rm gap.jar
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.5/gap.jar && java -jar gap.jar && rm gap.jar
sh gradlew packageSync -Pfilter.roots=[/content/example,/content/dam/example]
```

Expand All @@ -301,7 +301,7 @@ sh gradlew packageSync -Pfilter.roots=[/content/example,/content/dam/example]
To copy JCR content between any AEM instances using task [`instanceRcp`](instance-plugin.md#task-instancercp), consider running commands:

```bash
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.4/gap.jar && java -jar gap.jar && rm gap.jar
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.5/gap.jar && java -jar gap.jar && rm gap.jar
sh gradlew instanceRcp \
-Pinstance.rcp.source=http://foo:[email protected]:4502 \
-Pinstance.rcp.target=http://foo:[email protected]:4503 \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class EnvCloudScaffolder(private val launcher: Launcher) {
}
dependencies {
implementation("io.wttech.gradle.config:plugin:1.0.10")
implementation("io.wttech.gradle.config:plugin:1.0.12")
implementation("com.cognifide.gradle:aem-plugin:${launcher.pluginVersion}")
implementation("com.cognifide.gradle:common-plugin:1.1.15")
implementation("com.cognifide.gradle:environment-plugin:2.2.5")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class EnvInstanceOnlyScaffolder(private val launcher: Launcher) {
}
dependencies {
implementation("io.wttech.gradle.config:plugin:1.0.10")
implementation("io.wttech.gradle.config:plugin:1.0.12")
implementation("com.cognifide.gradle:aem-plugin:${launcher.pluginVersion}")
implementation("com.cognifide.gradle:common-plugin:1.0.41")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class EnvOnPremScaffolder(private val launcher: Launcher) {
}
dependencies {
implementation("io.wttech.gradle.config:plugin:1.0.10")
implementation("io.wttech.gradle.config:plugin:1.0.12")
implementation("com.cognifide.gradle:aem-plugin:${launcher.pluginVersion}")
implementation("com.cognifide.gradle:common-plugin:1.0.41")
implementation("com.cognifide.gradle:environment-plugin:2.2.0")
Expand Down

0 comments on commit 45cf850

Please sign in to comment.