Skip to content

Commit 45cf850

Browse files
Config plugin bump
1 parent 5448ab4 commit 45cf850

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

docs/launcher.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Simply, using e.g bash script - download the GAP launcher run it with regular GA
3030

3131
| GAP Launcher | AEM Project Archetype |
3232
|--------------|-----------------------|
33-
| 16.0.4 | 39 |
33+
| 16.0.5 | 39 |
3434

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

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

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

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

8282
```shell
83-
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
83+
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
8484
```
8585

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

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

261261
```shell
262-
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.4/gap.jar && java -jar gap.jar && rm gap.jar
262+
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.5/gap.jar && java -jar gap.jar && rm gap.jar
263263
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
264264
```
265265

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

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

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

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

303303
```bash
304-
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.4/gap.jar && java -jar gap.jar && rm gap.jar
304+
curl -OJL https://github.com/Cognifide/gradle-aem-plugin/releases/download/16.0.5/gap.jar && java -jar gap.jar && rm gap.jar
305305
sh gradlew instanceRcp \
306306
-Pinstance.rcp.source=http://foo:[email protected]:4502 \
307307
-Pinstance.rcp.target=http://foo:[email protected]:4503 \

launcher/src/main/kotlin/com/cognifide/gradle/aem/launcher/EnvCloudScaffolder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class EnvCloudScaffolder(private val launcher: Launcher) {
1919
}
2020
2121
dependencies {
22-
implementation("io.wttech.gradle.config:plugin:1.0.10")
22+
implementation("io.wttech.gradle.config:plugin:1.0.12")
2323
implementation("com.cognifide.gradle:aem-plugin:${launcher.pluginVersion}")
2424
implementation("com.cognifide.gradle:common-plugin:1.1.15")
2525
implementation("com.cognifide.gradle:environment-plugin:2.2.5")

launcher/src/main/kotlin/com/cognifide/gradle/aem/launcher/EnvInstanceOnlyScaffolder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class EnvInstanceOnlyScaffolder(private val launcher: Launcher) {
1818
}
1919
2020
dependencies {
21-
implementation("io.wttech.gradle.config:plugin:1.0.10")
21+
implementation("io.wttech.gradle.config:plugin:1.0.12")
2222
implementation("com.cognifide.gradle:aem-plugin:${launcher.pluginVersion}")
2323
implementation("com.cognifide.gradle:common-plugin:1.0.41")
2424
}

launcher/src/main/kotlin/com/cognifide/gradle/aem/launcher/EnvOnPremScaffolder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class EnvOnPremScaffolder(private val launcher: Launcher) {
2020
}
2121
2222
dependencies {
23-
implementation("io.wttech.gradle.config:plugin:1.0.10")
23+
implementation("io.wttech.gradle.config:plugin:1.0.12")
2424
implementation("com.cognifide.gradle:aem-plugin:${launcher.pluginVersion}")
2525
implementation("com.cognifide.gradle:common-plugin:1.0.41")
2626
implementation("com.cognifide.gradle:environment-plugin:2.2.0")

0 commit comments

Comments
 (0)