MSC
06/10/2021, 11:34 PMid 'com.plugins.my-plugin' version '1.0.0' apply ifEnvVarPresent
I want to apply this plugin only if an particular env var is presentturansky
06/11/2021, 3:02 AMplugins {
id 'com.plugins.my-plugin' version '1.0.0' apply false
}
if (myEnvVarPreset) {
prygins.apply('com.plugins.my-plugin')
}
MSC
06/11/2021, 4:12 AM