diff --git a/bmd-lib/build.gradle b/bmd-lib/build.gradle index 5db64b4..69e6991 100644 --- a/bmd-lib/build.gradle +++ b/bmd-lib/build.gradle @@ -6,7 +6,7 @@ group = 'com.badoo.bmd' version = '1.0' repositories { - mavenCentral() + maven { url "https://repo1.maven.org/maven2/" } } publishing { @@ -20,4 +20,4 @@ publishing { dependencies { testCompile group: 'junit', name: 'junit', version: '4.11' compile project(':hprof-lib') -} \ No newline at end of file +} diff --git a/build.gradle b/build.gradle index 072e5e5..045bb2d 100644 --- a/build.gradle +++ b/build.gradle @@ -4,9 +4,9 @@ sourceCompatibility = 1.5 version = '1.0' repositories { - mavenCentral() + maven { url "https://repo1.maven.org/maven2/" } } dependencies { testCompile group: 'junit', name: 'junit', version: '4.11' -} \ No newline at end of file +} diff --git a/cruncher/build.gradle b/cruncher/build.gradle index 07389db..48a27f3 100644 --- a/cruncher/build.gradle +++ b/cruncher/build.gradle @@ -8,7 +8,7 @@ group = 'com.badoo.hprof.cruncher' version = '1.1' repositories { - mavenCentral() + maven { url "https://repo1.maven.org/maven2/" } } run { @@ -39,4 +39,4 @@ dependencies { compile project(':bmd-lib') testCompile 'org.apache.commons:commons-io:1.3.2' testCompile group: 'junit', name: 'junit', version: '4.11' -} \ No newline at end of file +} diff --git a/decruncher/build.gradle b/decruncher/build.gradle index c70ae7a..0502d84 100644 --- a/decruncher/build.gradle +++ b/decruncher/build.gradle @@ -7,7 +7,7 @@ version = '1.0' mainClassName = "com.badoo.bmd.decruncher.BmdDecruncher" repositories { - mavenCentral() + maven { url "https://repo1.maven.org/maven2/" } } run { @@ -34,4 +34,4 @@ dependencies { compile 'commons-io:commons-io:2.4' compile files('libs/dex-reader-1.15.jar') testCompile group: 'junit', name: 'junit', version: '4.11' -} \ No newline at end of file +} diff --git a/deobfuscator/build.gradle b/deobfuscator/build.gradle index 0d6a6e0..635574e 100644 --- a/deobfuscator/build.gradle +++ b/deobfuscator/build.gradle @@ -6,7 +6,7 @@ version = '1.0' mainClassName = "com.badoo.hprof.deobfuscator.HprofDeobfuscator" repositories { - mavenCentral() + maven { url "https://repo1.maven.org/maven2/" } } run { diff --git a/hprof-lib/build.gradle b/hprof-lib/build.gradle index 29bf5e8..872c16d 100644 --- a/hprof-lib/build.gradle +++ b/hprof-lib/build.gradle @@ -6,7 +6,7 @@ version = '1.0' group = 'com.badoo.hprof.cruncher.library' repositories { - mavenCentral() + maven { url "https://repo1.maven.org/maven2/" } } publishing { @@ -21,4 +21,4 @@ dependencies { compile 'com.google.guava:guava:17.0' compile 'com.google.code.findbugs:jsr305:3.0.0' testCompile group: 'junit', name: 'junit', version: '4.11' -} \ No newline at end of file +} diff --git a/hprof-validator/build.gradle b/hprof-validator/build.gradle index 25431a9..c26b149 100644 --- a/hprof-validator/build.gradle +++ b/hprof-validator/build.gradle @@ -6,7 +6,7 @@ version = '1.0' mainClassName = "com.badoo.hprof.validator.HprofValidator" repositories { - mavenCentral() + maven { url "https://repo1.maven.org/maven2/" } } run { @@ -20,4 +20,4 @@ run { dependencies { testCompile group: 'junit', name: 'junit', version: '4.11' compile project(':hprof-lib') -} \ No newline at end of file +} diff --git a/hprof-viewer/build.gradle b/hprof-viewer/build.gradle index 9903a5d..46ac66c 100644 --- a/hprof-viewer/build.gradle +++ b/hprof-viewer/build.gradle @@ -5,7 +5,7 @@ sourceCompatibility = 1.5 mainClassName = "com.badoo.hprof.viewer.HprofViewer" repositories { - mavenCentral() + maven { url "https://repo1.maven.org/maven2/" } } run { @@ -29,4 +29,4 @@ dependencies { testCompile group: 'junit', name: 'junit', version: '4.11' compile 'com.google.code.gson:gson:2.4' compile project(':hprof-lib') -} \ No newline at end of file +}