2020-08-24 17:47:57 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-07-19 16:44:33 +02:00
|
|
|
mavenCentral()
|
2020-08-24 17:47:57 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2022-07-08 01:21:18 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:7.2.0'
|
2022-07-05 22:02:27 +02:00
|
|
|
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0'
|
2020-08-24 17:47:57 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
2022-06-11 21:37:26 +02:00
|
|
|
|
2020-08-24 17:47:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-07-19 16:44:33 +02:00
|
|
|
mavenCentral()
|
2020-08-24 17:47:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-02 13:35:37 +02:00
|
|
|
// Tracking issue https://github.com/semantic-release/semantic-release/issues/963
|
|
|
|
task publish(type: DefaultTask) {
|
|
|
|
group = 'publish'
|
|
|
|
description = 'Dummy publish to pass the verification phase of the gradle-semantic-release-plugin'
|
|
|
|
}
|
|
|
|
|
2020-08-24 17:47:57 +02:00
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
2022-07-08 01:00:34 +02:00
|
|
|
}
|