Skip to content

Commit 41d6ce0

Browse files
authored
Revert "Add maven proxy configuration. (#20)" (#51)
1 parent 2b616dd commit 41d6ce0

File tree

3 files changed

+1
-26
lines changed

3 files changed

+1
-26
lines changed

buildSrc/build.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ plugins {
1717
}
1818

1919
repositories {
20-
if (System.getenv().containsKey("FIREBASE_CI")) {
21-
maven {
22-
url "http://maven-proxy/"
23-
}
24-
}
2520
maven {
2621
url 'https://maven.google.com/'
2722
}

root-project.gradle

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ import groovy.io.FileType
1818
buildscript {
1919

2020
repositories {
21-
if (System.getenv().containsKey("FIREBASE_CI")) {
22-
maven {
23-
url "http://maven-proxy/"
24-
}
25-
}
2621
google()
2722
jcenter()
2823
mavenCentral()
@@ -52,11 +47,6 @@ apply plugin: com.google.firebase.gradle.plugins.publish.PublishingPlugin
5247

5348
configure(subprojects) {
5449
repositories {
55-
if (System.getenv().containsKey("FIREBASE_CI")) {
56-
maven {
57-
url "http://maven-proxy/"
58-
}
59-
}
6050
google()
6151
jcenter()
6252
mavenLocal()

test-apps/build.gradle

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@
1616

1717
buildscript {
1818
repositories {
19-
if (System.getenv().containsKey("FIREBASE_CI")) {
20-
maven {
21-
url "http://maven-proxy/"
22-
}
23-
}
2419
jcenter()
2520
mavenLocal()
2621
google()
@@ -49,11 +44,6 @@ allprojects {
4944
}
5045

5146
repositories {
52-
if (System.getenv().containsKey("FIREBASE_CI")) {
53-
maven {
54-
url "http://maven-proxy/"
55-
}
56-
}
5747
//mavenLocal() can be overridden via GRADLE_OPTS="-Dmaven.repo.local=<path>"
5848
mavenLocal()
5949
jcenter()
@@ -132,4 +122,4 @@ allprojects {
132122

133123
task clean(type: Delete) {
134124
delete rootProject.buildDir
135-
}
125+
}

0 commit comments

Comments
 (0)