Disable local mirrors for public teamcity

This commit is contained in:
Nikolay Krasko
2016-07-09 22:39:59 +03:00
parent 6b10a9d94e
commit 434a84eab6
@@ -216,10 +216,6 @@ public abstract class AbstractModelBuilderTest {
public static class DistributionLocator {
private static final String RELEASE_REPOSITORY_ENV = "GRADLE_RELEASE_REPOSITORY";
private static final String SNAPSHOT_REPOSITORY_ENV = "GRADLE_SNAPSHOT_REPOSITORY";
private static final String INTELLIJ_LABS_GRADLE_RELEASE_MIRROR =
"http://services.gradle.org-mirror.labs.intellij.net/distributions";
private static final String INTELLIJ_LABS_GRADLE_SNAPSHOT_MIRROR =
"http://services.gradle.org-mirror.labs.intellij.net/distributions-snapshots";
private static final String GRADLE_RELEASE_REPO = "http://services.gradle.org/distributions";
private static final String GRADLE_SNAPSHOT_REPO = "http://services.gradle.org/distributions-snapshots";
@@ -257,10 +253,6 @@ public abstract class AbstractModelBuilderTest {
String envRepoUrl = System.getenv(isSnapshotUrl ? SNAPSHOT_REPOSITORY_ENV : RELEASE_REPOSITORY_ENV);
if (envRepoUrl != null) return envRepoUrl;
if (UsefulTestCase.IS_UNDER_TEAMCITY) {
return isSnapshotUrl ? INTELLIJ_LABS_GRADLE_SNAPSHOT_MIRROR : INTELLIJ_LABS_GRADLE_RELEASE_MIRROR;
}
return isSnapshotUrl ? GRADLE_SNAPSHOT_REPO : GRADLE_RELEASE_REPO;
}
}