status-keycard-java/build.gradle

28 lines
544 B
Groovy
Raw Normal View History

2018-10-23 11:34:17 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
2018-10-23 11:34:17 +00:00
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
2019-03-27 10:08:02 +00:00
subprojects {
tasks.withType(Javadoc).all { enabled = false }
}