Commit 0bc3add0 authored by sisbell's avatar sisbell
Browse files

Bug 30483: JCenter Can Cause Mismatched Hashes

parent de62a5af
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'maven'

buildscript {
    repositories {
        google()
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:${androidplugin}"
@@ -16,12 +17,8 @@ buildscript {
allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }
        mavenCentral()
        maven { url "https://repo.spring.io/plugins-release" }
        maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" }
    }
}
 No newline at end of file

task clean(type: Delete) {
    delete rootProject.buildDir
}