72 lines
2.0 KiB
Groovy
72 lines
2.0 KiB
Groovy
/*
|
|
* Nextcloud - Android Client
|
|
*
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2024 Alper Ozturk <alper.ozturk@nextcloud.com>
|
|
* SPDX-FileCopyrightText: 2023 Tobias Kaminsky <tobias@kaminsky.me>
|
|
* SPDX-FileCopyrightText: 2022 Álvaro Brey Vilas <alvaro@alvarobrey.com>
|
|
* SPDX-FileCopyrightText: 2016 Andy Scherzinger <info@andy-scherzinger.de>
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
|
|
*/
|
|
buildscript {
|
|
ext {
|
|
androidLibraryVersion ="d862794d794a7e8d8b53da98aa801753e684bf52"
|
|
androidCommonLibraryVersion = "0.26.0"
|
|
androidPluginVersion = "8.9.2"
|
|
androidxMediaVersion = "1.5.1"
|
|
androidxTestVersion = "1.6.1"
|
|
appCompatVersion = "1.7.1"
|
|
checkerVersion = "3.21.2"
|
|
daggerVersion = "2.56.2"
|
|
documentScannerVersion = "1.1.1"
|
|
espressoVersion = "3.6.1"
|
|
jacoco_version = "0.8.13"
|
|
kotlin_version = "2.1.20"
|
|
markwonVersion = "4.6.2"
|
|
mockitoVersion = "4.11.0"
|
|
mockitoKotlinVersion = "4.1.0"
|
|
mockkVersion = "1.13.17"
|
|
prismVersion = "2.0.0"
|
|
roomVersion = "2.6.1"
|
|
workRuntime = "2.10.1"
|
|
|
|
ciBuild = System.getenv("CI") == "true"
|
|
shotTest = System.getenv("SHOT_TEST") == "true"
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
}
|
|
|
|
tasks.register("clean", Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
tasks.register("installGitHooks", Copy) {
|
|
def sourceFolder = "${rootProject.projectDir}/scripts/hooks"
|
|
def destFolder = "${rootProject.projectDir}/.git/hooks"
|
|
|
|
description = "Install git hooks"
|
|
|
|
from(sourceFolder) {
|
|
include "*"
|
|
}
|
|
into destFolder
|
|
|
|
eachFile { file ->
|
|
println "${sourceFolder}/${file.relativeSourcePath} -> ${destFolder}/${file.path}"
|
|
}
|
|
}
|