Attempt to make init-script compatible with Gradle 1.12
Some checks failed
CI-init-script-check / test-init-scripts (push) Waiting to run
Demo Job Summary, for Gradle builds / run-gradle-builds (push) Has been cancelled
Demo Job Summary, for Gradle builds / pre-existing-gradle-home (push) Has been cancelled

The `PluginManager` type wasn't introduced until Gradle 2.x.
Remove this type from the method signature in an attempt to allow this
file to be parsed with Gradle 1.12.
This commit is contained in:
daz 2023-12-19 14:10:55 -07:00
parent a0fc8606d2
commit 982da8e78c
No known key found for this signature in database

View File

@ -168,7 +168,7 @@ if (GradleVersion.current() < GradleVersion.version('6.0')) {
}
}
void applyPluginExternally(PluginManager pluginManager, String pluginClassName) {
void applyPluginExternally(def pluginManager, String pluginClassName) {
def externallyApplied = 'gradle.enterprise.externally-applied'
def oldValue = System.getProperty(externallyApplied)
System.setProperty(externallyApplied, 'true')