Skip to content

Commit

Permalink
Merge branch '2.6.x' into 2.7.x
Browse files Browse the repository at this point in the history
Closes gh-31086
  • Loading branch information
wilkinsona committed May 17, 2022
2 parents 036356b + e3b2088 commit 179e372
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2019 the original author or authors.
* Copyright 2012-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -93,7 +93,7 @@ public MavenSettings(Settings settings, SettingsDecryptionResult decryptedSettin
private MirrorSelector createMirrorSelector(Settings settings) {
DefaultMirrorSelector selector = new DefaultMirrorSelector();
for (Mirror mirror : settings.getMirrors()) {
selector.add(mirror.getId(), mirror.getUrl(), mirror.getLayout(), false, mirror.getMirrorOf(),
selector.add(mirror.getId(), mirror.getUrl(), mirror.getLayout(), false, false, mirror.getMirrorOf(),
mirror.getMirrorOfLayouts());
}
return selector;
Expand Down
7 changes: 5 additions & 2 deletions spring-boot-project/spring-boot-parent/build.gradle
Expand Up @@ -102,13 +102,16 @@ bom {
]
}
}
library("Maven Resolver", "1.6.1") {
library("Maven Resolver", "1.6.3") {
group("org.apache.maven.resolver") {
modules = [
"maven-resolver-api",
"maven-resolver-connector-basic",
"maven-resolver-impl",
"maven-resolver-spi",
"maven-resolver-transport-file",
"maven-resolver-transport-http"
"maven-resolver-transport-http",
"maven-resolver-util"
]
}
}
Expand Down

0 comments on commit 179e372

Please sign in to comment.