Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
joshafeinberg committed Apr 13, 2022
1 parent 23b927e commit 2e7b97a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,24 @@ In the example below, we're showing a hypothetical project graph and what projec

## Installation

```groovy
// settings.gradle(.kts)
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("com.dropbox.affectedmoduledetector") version "<latest-version>"
}
```

Note that the plugin is currently published to Maven Central, so you need to add it to the repositories list in the `pluginsManagement` block.

Alternatively, it can be consumed via manual buildscript dependency + plugin application.

Apply the project to the root `build.gradle`:
```groovy
buildscript {
Expand Down

0 comments on commit 2e7b97a

Please sign in to comment.