Skip to content

Commit 640ede4

Browse files
Y-Shcheholskyydnestoro
authored andcommitted
Replaced table content
1 parent 40440ea commit 640ede4

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

docs/src/docs/asciidoc/gradle-plugin.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -173,29 +173,29 @@ You can also pass **build-time** and **run-time** arguments:
173173
- `buildArgs.add('<buildArg>')`: Configures the build by passing options directly to `native-image`. You can pass any Native Image build option listed https://www.graalvm.org/reference-manual/native-image/overview/Options/[here].
174174
- `runtimeArgs.add('<runtimeArg>')`: Specifies runtime arguments consumed by your application.
175175

176-
==== Command line options
176+
==== Command Line Options
177177

178-
The preferred way to configure native binaries is by using the DSL, so that you can provide reproducible builds which do not depend on obscure CLI invocations.
179-
However, in some circumstances, for experimentation, it may be useful to override parameters from command line.
180-
The following flags are available and (unless stated otherwise) will take precedence over the DSL configuration:
178+
The preferred way to configure native binaries is through the DSL, so that you can provide reproducible builds which do not depend on obscure CLI invocations.
179+
However, in some cases—such as experimentationit may be useful to override parameters via the command line.
180+
The following flags are available and, unless stated otherwise, take precedence over the DSL configuration:
181181

182182
|===
183183
|Command line option|Description
184184
|`--image-name=<name>`|Overrides the `imageName` property
185185
|`--main-class=<class>`|Overrides the `mainClass` property
186186
|`--(no-)debug-native`|Enables or disables debug info generation
187187
|`--(no-)verbose`|Enables or disables verbose output
188-
|`--(no-)fallback`|Enables or disables the fallback mode
188+
|`--(no-)fallback`|Enables or disables fallback mode
189189
|`--(no-)quick-build-native`|Enables or disables quick build mode
190190
|`--(no-)rich-output`|Enables or disables rich output
191191
|`--(no-)pgo-instrument`|Enables or disables PGO instrumentation
192192
|`--build-args`|Adds build arguments
193-
|`--force-build-args`|Overrides build arguments (DSL will be ignored)
194-
|`--(no-)fat-jar`|Enables or disables creation of a far jar for compilation
195-
|`--sysprop-native`|Adds a system property for compilation
196-
|`--env-native`|Adds an environment variable for compilation
197-
|`--jvm-args-native`|Adds JVM arguments for compilation
198-
|`--force-jvm-args-native`|Overrides JVM arguments (DSL will be ignored)
193+
|`--force-build-args`|Overrides build arguments (DSL configuration is ignored)
194+
|`--(no-)fat-jar`|Enables or disables creation of a fat JAR for compilation
195+
|`--sysprop-native`|Adds a system property for `native-image` compilation
196+
|`--env-native`|Adds an environment variable for `native-image` compilation
197+
|`--jvm-args-native`|Adds JVM arguments for `native-image` compilation
198+
|`--force-jvm-args-native`|Overrides JVM arguments (DSL configuration is ignored)
199199
|===
200200

201201

0 commit comments

Comments
 (0)