mirror of
https://github.com/leaf-wai/StackLayoutManager.git
synced 2026-03-17 01:42:51 +08:00
33 lines
810 B
Groovy
33 lines
810 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.2.60'
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.1.4'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath 'com.novoda:bintray-release:0.8.1'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
tasks.withType(Javadoc) {
|
|
options{ encoding "UTF-8"
|
|
charSet 'UTF-8'
|
|
links "http://docs.oracle.com/javase/7/docs/api"
|
|
}
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
tasks.getByPath(":StackLayoutManager:releaseAndroidJavadocs").enabled = false
|