Files
StackLayoutManager/build.gradle
Little Mango eb414b449a 增加上传 Jcenter 脚本
增加上传 Jcenter 脚本
2018-07-03 18:30:40 +08:00

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.50'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
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