Aegis/build.gradle

29 lines
673 B
Groovy
Raw Normal View History

2016-08-15 19:29:41 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
2021-07-22 19:43:51 +00:00
mavenCentral()
google()
2016-08-15 19:29:41 +00:00
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.3'
2021-07-22 19:17:04 +00:00
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.17'
2016-08-15 19:29:41 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2021-07-22 19:43:51 +00:00
mavenCentral()
google()
maven { url 'https://jitpack.io' }
2021-07-22 19:43:51 +00:00
jcenter()
2016-08-15 19:29:41 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}