tachiyomi-extensions-lib/build.gradle

28 lines
654 B
Groovy
Raw Normal View History

2017-01-20 21:46:11 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6.10'
2017-01-20 21:46:11 +01:00
repositories {
2021-04-28 15:05:54 +02:00
mavenCentral()
google()
2017-01-20 21:46:11 +01:00
}
dependencies {
2022-02-01 18:53:13 +01:00
classpath 'com.android.tools.build:gradle:7.1.0'
2017-01-20 21:46:11 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2021-04-28 15:05:54 +02:00
mavenCentral()
google()
2017-01-20 21:46:11 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}