From 6a909af9fe3fae6601c3a99d8857dbd32f5f7073 Mon Sep 17 00:00:00 2001 From: DevDavido <997605+DevDavido@users.noreply.github.com> Date: Tue, 4 Jun 2024 16:13:21 +0200 Subject: [PATCH] docs: Fix README for createAS/startAS task changes in plugin major release v5 --- README.asciidoc | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/README.asciidoc b/README.asciidoc index bd98e5b..c401728 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -585,10 +585,9 @@ NOTE: To make the `classpathLayout` `sourceJar` work the gradle-property `localV ++++ -===== Application Server [[StartASParameters]] +===== Application Server [[CreateASParameters]] IMPORTANT: The following parameters actually belong to the task `createAS` (not `startAS`). -But if you just call for example `./gradlew startAS --debug-icm=suspend` the parameter(s) are also applied to the `createAS`-task (task `startAS` depends on `createAS`). [cols="10%,70%,10%,10%", width="99%, options="header"] |=== @@ -605,15 +604,20 @@ NOTE: To make the `classpathLayout` `sourceJar` work the gradle-property `localV
Examples ++++ -.start with debugging in suspend mode +.create application server container with debugging (default port 5005) in suspend mode [source,shell] ---- -./gradlew startAS --debug-icm=suspend +./gradlew createAS --debug-icm=suspend ---- -.start with GC-logging and heap dump +.create application server container with GC-logging and heap dump [source,shell] ---- -./gradlew startAS --gclog --heapdump +./gradlew createAS --gclog --heapdump +---- +.start application server container previously created +[source,shell] +---- +./gradlew startAS ---- ++++