You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: grails-bootstrap/src/main/groovy/grails/util/BuildSettings.groovy
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1320,12 +1320,13 @@ class BuildSettings extends AbstractBuildSettings {
1320
1320
// The logic here tries to establish if the plugin has been declared anywhere by the application. Only plugins that have
1321
1321
// been declared should have their transitive dependencies resolved. Unfortunately it is fairly complicated to establish what plugins are declared since
1322
1322
// there may be a mixture of plugins defined in BuildConfig, inline plugins and plugins installed via install-plugin
1323
-
if (!isRegisteredInMetadata(pluginName) && notDefinedInBuildConfig(pluginName) &&!isInlinePluginLocation(dir)) {
1323
+
final isInline = isInlinePluginLocation(dir)
1324
+
if (!isRegisteredInMetadata(pluginName) && notDefinedInBuildConfig(pluginName) &&!isInline) {
0 commit comments