Migrate http to https in maven address (#6698)

This commit is contained in:
kezhenxu94 2021-11-05 20:17:27 +08:00 committed by GitHub
parent 72daba58cd
commit 5e923971bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public class DolphinPluginManagerConfig {
*/
private final String defaultLocalRepository = System.getProperty("user.home") + "/.m2/repository";
private String mavenLocalRepository = getMavenLocalRepositoryOrDefault(defaultLocalRepository);
private List<String> mavenRemoteRepository = ImmutableList.of("http://repo1.maven.org/maven2/");
private List<String> mavenRemoteRepository = ImmutableList.of("https://repo1.maven.org/maven2/");
File getInstalledPluginsDir() {
return installedPluginsDir;