We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f250b71 commit cd8748aCopy full SHA for cd8748a
common/commands/configfile.go
@@ -448,10 +448,14 @@ func getIncludeExcludePatterns(patternType string) string {
448
}
449
450
func (configFile *ConfigFile) configGradle() error {
451
- if err := configFile.setResolver(false); err != nil {
+ if err := configFile.setDeployerResolver(); err != nil {
452
return err
453
454
- return configFile.setDeployer(false)
+ if configFile.Deployer.ServerId != "" {
455
+ configFile.setMavenIvyDescriptors()
456
+ }
457
+ configFile.readGradleGlobalConfig()
458
+ return nil
459
460
461
func (configFile *ConfigFile) readGradleGlobalConfig() {
0 commit comments