Skip to content

Commit 8b4ed39

Browse files
authored
Fix mistakes in documentation
Fixes #170
1 parent 0f8c712 commit 8b4ed39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ However, if this doesn't work, you can add the following to your `dependency-ver
116116

117117
As well as the `GitHubDependencyGraphPlugin`, which is tailored for use by the [gradle/actions/dependency-submission](https://github.com/gradle/actions/tree/main/dependency-submission) GitHub Action, this repository also provides the `SimpleDependencyGraphPlugin`, which generates dependency-graph outputs in simple text format.
118118

119-
To use the `SimpleDependencyGraphPlugin` you'll need to create an `init-script.gradle` file to apply the plugin to your project:
119+
To use the `SimpleDependencyGraphPlugin` you'll need to create an `init.gradle` file to apply the plugin to your project:
120120

121121
```groovy
122122
initscript {
@@ -133,10 +133,10 @@ apply plugin: org.gradle.dependencygraph.simple.SimpleDependencyGraphPlugin
133133
and then execute the task to resolve all dependencies in your project:
134134

135135
```shell
136-
./gradlew -I init.gradle --dependency-verification=off --no-configuration-cache --no-configure-on-demand :ForceDependencyResolutionPlugin_resolveAllDependencies
136+
./gradlew -I init.gradle --dependency-verification=off --no-configuration-cache --no-zconfigure-on-demand :ForceDependencyResolutionPlugin_resolveAllDependencies
137137
```
138138

139-
You'll find the generated files in `build/dependency-graph-snapshots`.
139+
You'll find the generated files in `build/reports/dependency-graph-snapshots`.
140140

141141
### Using dependency reports to determine the underlying source of a dependency
142142

0 commit comments

Comments
 (0)