Fixing merge issue

This commit is contained in:
Joakim Erdfelt 2018-04-25 16:30:47 -05:00
parent 47586c5449
commit 0ea704a29a
2 changed files with 5 additions and 5 deletions

View File

@ -1285,7 +1285,7 @@ public class StartArgs
}
}
// to override default http://central.maven.org/maven2/
// to override default https://central.maven.org/maven2/
if (key.equals("maven.repo.uri"))
{
this.mavenBaseUri = value;

View File

@ -95,7 +95,7 @@ public class MavenLocalRepoFileInitializerTest
assertThat("coords.classifier",coords.classifier,nullValue());
assertThat("coords.toCentralURI", coords.toCentralURI().toASCIIString(),
is("http://central.maven.org/maven2/org/eclipse/jetty/jetty-start/9.3.x/jetty-start-9.3.x.jar"));
is("https://central.maven.org/maven2/org/eclipse/jetty/jetty-start/9.3.x/jetty-start-9.3.x.jar"));
}
@Test
@ -113,7 +113,7 @@ public class MavenLocalRepoFileInitializerTest
assertThat("coords.classifier",coords.classifier,nullValue());
assertThat("coords.toCentralURI", coords.toCentralURI().toASCIIString(),
is("http://central.maven.org/maven2/org/eclipse/jetty/jetty-distribution/9.3.x/jetty-distribution-9.3.x.zip"));
is("https://central.maven.org/maven2/org/eclipse/jetty/jetty-distribution/9.3.x/jetty-distribution-9.3.x.zip"));
}
@Test
@ -131,7 +131,7 @@ public class MavenLocalRepoFileInitializerTest
assertThat("coords.classifier",coords.classifier,is("tests"));
assertThat("coords.toCentralURI", coords.toCentralURI().toASCIIString(),
is("http://central.maven.org/maven2/org/eclipse/jetty/jetty-http/9.3.x/jetty-http-9.3.x-tests.jar"));
is("https://central.maven.org/maven2/org/eclipse/jetty/jetty-http/9.3.x/jetty-http-9.3.x-tests.jar"));
}
@Test
@ -149,7 +149,7 @@ public class MavenLocalRepoFileInitializerTest
assertThat("coords.classifier",coords.classifier,is("tests"));
assertThat("coords.toCentralURI", coords.toCentralURI().toASCIIString(),
is("http://central.maven.org/maven2/org/eclipse/jetty/jetty-http/9.3.x/jetty-http-9.3.x-tests.jar"));
is("https://central.maven.org/maven2/org/eclipse/jetty/jetty-http/9.3.x/jetty-http-9.3.x-tests.jar"));
}
@Test