From 0c8b039ef0d6c55f57594952f0bbe041c6b15419 Mon Sep 17 00:00:00 2001 From: Alexander Rimer Date: Fri, 15 Feb 2019 10:54:50 +0100 Subject: [PATCH] Update README.md Fixed some typos. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2f51d2be..723f001b 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Parameters: - `script`: path to the ANT to execute - `scriptClasspath`: classpath used for the JVM that will execute the generated ANT script. Needs to contain ANT to be able to run the build script. See below section "Providing Global Defaults" for project wide defaults. -- `scriptArgs`; additional command line arguments provided to the JVM that will execute the generated ANT scripts. This +- `scriptArgs`: additional command line arguments provided to the JVM that will execute the generated ANT scripts. This is often used to provide property valued via "-Dprop=value". See below section "Providing Global Defaults" for project wide defaults. - `includeDefaultArgs`: controls if the project wide default values for arguments is used or not. It's set to `true` by default. @@ -48,7 +48,7 @@ Parameters: ### Providing Global Defaults -All tasks derived from the `RunAntScript` base class allow to specify default values for the classpath and script arguemnts +All tasks derived from the `RunAntScript` base class allow to specify default values for the classpath and script arguments via project properties. By default these values are added to the value specified for the parameters `scriptArgs` and `scriptClasspath` if they are present. To opt out from the defaults see above the parameters `includeDefaultArgs` and `includeDefaultClasspath`.