File tree Expand file tree Collapse file tree 4 files changed +12
-30
lines changed
src/site/markdown/dependency-check-gradle Expand file tree Collapse file tree 4 files changed +12
-30
lines changed Original file line number Diff line number Diff line change @@ -69,10 +69,8 @@ proxy | nonProxyHosts | The list of hosts that do not use a proxy. |
6969#### Example
7070``` groovy
7171dependencyCheck {
72- proxy {
73- server=some.proxy.server
74- port=8989
75- }
72+ proxy.server=some.proxy.server
73+ proxy.port=8989
7674}
7775```
7876
@@ -103,9 +101,7 @@ data | password | The password used when connecting to the data
103101#### Example
104102``` groovy
105103dependencyCheck {
106- data {
107- directory='d:/nvd'
108- }
104+ data.directory='d:/nvd'
109105}
110106```
111107
@@ -192,15 +188,9 @@ hostedSuppressions | validForHours | The number of hours to wait before checki
192188#### Example
193189``` groovy
194190dependencyCheck {
195- analyzers {
196- assemblyEnabled=false
197- artifactory {
198- enabled=true
199- url='https://internal.artifactory.url'
200- }
201- retirejs {
202- filters = ['(i)copyright Jeremy Long']
203- }
204- }
191+ analyzers.assemblyEnabled=false
192+ analyzers.artifactory.enabled=true
193+ analyzers.artifactory.url='https://internal.artifactory.url'
194+ analyzers.retirejs.filters = ['(i)copyright Jeremy Long']
205195}
206196```
Original file line number Diff line number Diff line change @@ -49,8 +49,6 @@ data | directory | Sets the data directory to hold SQL CVEs cont
4949#### Example
5050``` groovy
5151dependencyCheck {
52- data {
53- directory='d:/nvd'
54- }
52+ data.directory='d:/nvd'
5553}
5654```
Original file line number Diff line number Diff line change @@ -49,10 +49,8 @@ proxy | nonProxyHosts | The list of hosts that do not use a proxy. |
4949#### Example
5050``` groovy
5151dependencyCheck {
52- proxy {
53- server=some.proxy.server
54- port=8989
55- }
52+ proxy.server=some.proxy.server
53+ proxy.port=8989
5654}
5755```
5856
@@ -85,8 +83,6 @@ hostedSuppressions | validForHours | The number of hours to wait before checki
8583#### Example
8684``` groovy
8785dependencyCheck {
88- data {
89- directory='d:/nvd'
90- }
86+ data.directory='d:/nvd'
9187}
9288```
Original file line number Diff line number Diff line change @@ -85,9 +85,7 @@ data | password | The password used when connecting to the data
8585#### Example
8686``` groovy
8787dependencyCheck {
88- data {
89- directory='d:/nvd'
90- }
88+ data.directory='d:/nvd'
9189}
9290```
9391
You can’t perform that action at this time.
0 commit comments