Skip to content

Commit

Permalink
docs: Fix README for createAS/startAS task changes in plugin major re…
Browse files Browse the repository at this point in the history
…lease v5
  • Loading branch information
DevDavido committed Jun 4, 2024
1 parent dc9a2ec commit 6a909af
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions README.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -585,10 +585,9 @@ NOTE: To make the `classpathLayout` `sourceJar` work the gradle-property `localV
</details>
++++

===== 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"]
|===
Expand All @@ -605,15 +604,20 @@ NOTE: To make the `classpathLayout` `sourceJar` work the gradle-property `localV
<details>
<summary>Examples</summary>
++++
.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
----
++++
</details>
Expand Down

0 comments on commit 6a909af

Please sign in to comment.