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
|
2024-07-24 13:44:28 +03:00
|
|
|
* SPDX-FileCopyrightText: 2024 Marcel Hibbe <dev@mhibbe.de>
|
2024-03-17 16:12:32 +03:00
|
|
|
* 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-08-22 12:59:34 +03:00
|
|
|
kotlinVersion = '2.0.20'
|
2024-05-22 17:09:12 +03:00
|
|
|
hilt_version = '2.44'
|
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-08-29 22:36:28 +03:00
|
|
|
classpath 'com.android.tools.build:gradle:8.6.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-09-05 07:19:26 +03:00
|
|
|
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.22'
|
2024-09-08 20:03:43 +03:00
|
|
|
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.7"
|
2024-07-24 11:41:26 +03:00
|
|
|
classpath "org.jlleitschuh.gradle:ktlint-gradle:12.1.1"
|
2024-07-19 12:13:33 +03:00
|
|
|
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
|
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' }
|
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
|
|
|
|
}
|