chaosflix/build.gradle

26 lines
657 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
2017-03-24 22:50:30 +00:00
mavenCentral()
}
dependencies {
2017-03-21 23:58:44 +00:00
classpath 'com.android.tools.build:gradle:2.3.0'
2017-03-24 22:50:30 +00:00
classpath 'me.tatarka:gradle-retrolambda:3.6.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
2017-03-24 22:50:30 +00:00
}