forked from felipegr6/OpenCV
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (27 loc) · 784 Bytes
/
Copy pathbuild.gradle
File metadata and controls
29 lines (27 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
buildscript {
apply from: 'versions.gradle'
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:${androidPluginVer}"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:${bintrayPluginVer}"
classpath "com.github.dcendents:android-maven-gradle-plugin:${mavenPluginVer}"
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url "http://dl.bintray.com/andmar1x/maven" }
}
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
excludes = ['**/*.kt', '**/*.aidl']
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}