Browse Source

[NO JIRA] rename private settings.gradle to private-settings.gradle

There can only be one settings.gradle file per project, this extra one is confusing intellij (thinking private is a root project) and block the usage of features such a dependency analysis on any private modules.
tags/10.0.0.68432
Steve Marion 1 year ago
parent
commit
72f0022d33
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      settings.gradle

+ 1
- 1
settings.gradle View File

@@ -61,7 +61,7 @@ include 'ut-monitoring'
ext.isCiServer = System.getenv().containsKey("CIRRUS_CI")

// use Settings.getRootDir() so that it doesn't matter which directory you are executing from
File extraSettings = new File(rootDir, 'private/settings.gradle')
File extraSettings = new File(rootDir, 'private/private-settings.gradle')
if (extraSettings.exists()) {
apply from: extraSettings
}

Loading…
Cancel
Save