2019-08-30 13:12:40 +03:00
|
|
|
/*
|
2024-03-17 16:12:32 +03:00
|
|
|
* Nextcloud Talk - Android Client
|
2019-08-30 13:12:40 +03:00
|
|
|
*
|
2024-03-17 16:12:32 +03:00
|
|
|
* SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2021 Andy Scherzinger <info@andy-scherzinger.de>
|
|
|
|
* SPDX-FileCopyrightText: 2017-2019 Mario Danic <mario@lovelyhq.com>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2019-08-30 13:12:40 +03:00
|
|
|
*/
|
2017-10-23 13:40:38 +03:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
2017-10-28 00:10:06 +03:00
|
|
|
|
|
|
|
ext {
|
2024-03-07 11:34:11 +03:00
|
|
|
kotlinVersion = '1.9.23'
|
2017-10-28 00:10:06 +03:00
|
|
|
}
|
|
|
|
|
2017-10-23 13:40:38 +03:00
|
|
|
repositories {
|
|
|
|
google()
|
2022-05-18 14:27:55 +03:00
|
|
|
gradlePluginPortal()
|
2021-04-23 11:09:10 +03:00
|
|
|
mavenCentral()
|
2017-10-23 13:40:38 +03:00
|
|
|
}
|
2021-04-29 16:09:17 +03:00
|
|
|
|
2017-10-23 13:40:38 +03:00
|
|
|
dependencies {
|
2024-02-29 22:26:33 +03:00
|
|
|
classpath 'com.android.tools.build:gradle:8.3.0'
|
2017-10-28 00:10:06 +03:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}"
|
2022-06-12 20:01:47 +03:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:${kotlinVersion}"
|
2024-03-01 13:34:58 +03:00
|
|
|
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.8'
|
2024-01-31 14:01:47 +03:00
|
|
|
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.5"
|
2024-01-10 05:31:31 +03:00
|
|
|
classpath "org.jlleitschuh.gradle:ktlint-gradle:12.1.0"
|
2017-10-23 13:40:38 +03:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-13 16:01:17 +03:00
|
|
|
configurations.configureEach {
|
2023-07-06 20:04:25 +03:00
|
|
|
exclude group: 'org.jetbrains', module: 'annotations-java5' // via prism4j, already using annotations explicitly
|
2017-10-23 13:40:38 +03:00
|
|
|
// check for updates every build
|
2019-08-21 12:24:22 +03:00
|
|
|
resolutionStrategy.cacheChangingModulesFor 3600, 'seconds'
|
2017-10-23 13:40:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-04-23 11:09:10 +03:00
|
|
|
mavenCentral()
|
2022-05-18 13:04:09 +03:00
|
|
|
maven { url 'https://jitpack.io' }
|
2022-05-18 13:53:51 +03:00
|
|
|
gradlePluginPortal() // for jcenter mirroring, remove ASAP
|
2017-10-23 13:40:38 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-13 16:01:17 +03:00
|
|
|
tasks.register('clean', Delete) {
|
2017-10-23 13:40:38 +03:00
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|