diff --git a/src/site/markdown/dependency-check-gradle/configuration-aggregate.md b/src/site/markdown/dependency-check-gradle/configuration-aggregate.md index b5502355a1..c6c219372d 100644 --- a/src/site/markdown/dependency-check-gradle/configuration-aggregate.md +++ b/src/site/markdown/dependency-check-gradle/configuration-aggregate.md @@ -69,10 +69,8 @@ proxy | nonProxyHosts | The list of hosts that do not use a proxy. | #### Example ```groovy dependencyCheck { - proxy { - server=some.proxy.server - port=8989 - } + proxy.server=some.proxy.server + proxy.port=8989 } ``` @@ -103,9 +101,7 @@ data | password | The password used when connecting to the data #### Example ```groovy dependencyCheck { - data { - directory='d:/nvd' - } + data.directory='d:/nvd' } ``` @@ -192,15 +188,9 @@ hostedSuppressions | validForHours | The number of hours to wait before checki #### Example ```groovy dependencyCheck { - analyzers { - assemblyEnabled=false - artifactory { - enabled=true - url='https://internal.artifactory.url' - } - retirejs { - filters = ['(i)copyright Jeremy Long'] - } - } + analyzers.assemblyEnabled=false + analyzers.artifactory.enabled=true + analyzers.artifactory.url='https://internal.artifactory.url' + analyzers.retirejs.filters = ['(i)copyright Jeremy Long'] } ``` diff --git a/src/site/markdown/dependency-check-gradle/configuration-purge.md b/src/site/markdown/dependency-check-gradle/configuration-purge.md index 91f77ce528..7b7c4cbf14 100644 --- a/src/site/markdown/dependency-check-gradle/configuration-purge.md +++ b/src/site/markdown/dependency-check-gradle/configuration-purge.md @@ -49,8 +49,6 @@ data | directory | Sets the data directory to hold SQL CVEs cont #### Example ```groovy dependencyCheck { - data { - directory='d:/nvd' - } + data.directory='d:/nvd' } ``` diff --git a/src/site/markdown/dependency-check-gradle/configuration-update.md b/src/site/markdown/dependency-check-gradle/configuration-update.md index 4d1089df68..24c6f7a131 100644 --- a/src/site/markdown/dependency-check-gradle/configuration-update.md +++ b/src/site/markdown/dependency-check-gradle/configuration-update.md @@ -49,10 +49,8 @@ proxy | nonProxyHosts | The list of hosts that do not use a proxy. | #### Example ```groovy dependencyCheck { - proxy { - server=some.proxy.server - port=8989 - } + proxy.server=some.proxy.server + proxy.port=8989 } ``` @@ -85,8 +83,6 @@ hostedSuppressions | validForHours | The number of hours to wait before checki #### Example ```groovy dependencyCheck { - data { - directory='d:/nvd' - } + data.directory='d:/nvd' } ``` diff --git a/src/site/markdown/dependency-check-gradle/configuration.md b/src/site/markdown/dependency-check-gradle/configuration.md index 4ae38f60b0..e0e2ba547e 100644 --- a/src/site/markdown/dependency-check-gradle/configuration.md +++ b/src/site/markdown/dependency-check-gradle/configuration.md @@ -85,9 +85,7 @@ data | password | The password used when connecting to the data #### Example ```groovy dependencyCheck { - data { - directory='d:/nvd' - } + data.directory='d:/nvd' } ```