Table of Contents
Add the plugin section in your settings.gradle.kts
settings.gradle.kts
import com.voc.gradle.plugin.extensions.AutoIncludeProjectExtension
pluginManagement {
plugins {
id("io.github.coffee377.auto-include") version "0.1.2" // (1)
}
}
plugins {
id("io.github.coffee377.auto-include") // (2)
}
configure<com.voc.gradle.plugin.extensions.AutoIncludeProjectExtension> { // (3)
// isEnable = false // (4)
// exclude(".*persist$") // (5)
}
-
Introduce plug-ins
-
Use plug-ins
-
Configure the plug-in
-
Disable automatic inclusion of items
-
Exclude the specified item