Skip to content
Snippets Groups Projects
Forked from briar / briar
3621 commits behind the upstream repository.
build.gradle 528 B
// Top-level build file where you can add configuration options common to all sub-projects/modules.

allprojects {
	repositories {
		jcenter()
		mavenLocal()
		google()
	}
}

buildscript {
	repositories {
		jcenter()
		mavenLocal()
		google()
		maven {
			url 'https://plugins.gradle.org/m2/'
		}
	}

	dependencies {
		classpath 'com.android.tools.build:gradle:3.1.2'
		classpath 'net.ltgt.gradle:gradle-apt-plugin:0.9'
		classpath 'ru.vyarus:gradle-animalsniffer-plugin:1.4.3'
		classpath files('libs/gradle-witness.jar')
	}
}