Skip to content

Commit

Permalink
docs: update documentation for Gradle plugin (#7143)
Browse files Browse the repository at this point in the history
  • Loading branch information
tylervz authored Nov 12, 2024
1 parent ef24bfc commit a20b0cd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
```

Expand Down Expand Up @@ -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'
}
```

Expand Down Expand Up @@ -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']
}
```
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
```

Expand Down Expand Up @@ -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'
}
```
4 changes: 1 addition & 3 deletions src/site/markdown/dependency-check-gradle/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down

0 comments on commit a20b0cd

Please sign in to comment.