From 2e7b97a4707c4a3fe1f93e9c3e75f914c99179f6 Mon Sep 17 00:00:00 2001 From: Josh Feinberg Date: Wed, 13 Apr 2022 16:44:34 -0500 Subject: [PATCH] Update documentation --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 295573a6..59cf809b 100644 --- a/README.md +++ b/README.md @@ -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 "" +} +``` + +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 {