mirror of
https://github.com/leaf-wai/StackLayoutManager.git
synced 2026-03-14 08:42:50 +08:00
33 lines
812 B
Groovy
33 lines
812 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.6.10'
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.2.2'
|
|
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
|