12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /*
- * 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 ="ceb3812b688f2288911acf4d917596283fab0ea5"
- androidPluginVersion = '8.7.2'
- androidxMediaVersion = '1.4.1'
- androidxTestVersion = "1.6.1"
- appCompatVersion = '1.7.0'
- checkerVersion = "3.21.2"
- daggerVersion = "2.52"
- documentScannerVersion = "1.1.1"
- espressoVersion = "3.6.1"
- jacoco_version = '0.8.12'
- kotlin_version = '2.0.21'
- markwonVersion = "4.6.2"
- mockitoVersion = "4.11.0"
- mockitoKotlinVersion = "4.1.0"
- mockkVersion = "1.13.13"
- prismVersion = "2.0.0"
- roomVersion = "2.6.1"
- workRuntime = "2.9.1"
- ciBuild = System.getenv("CI") == "true"
- shotTest = System.getenv("SHOT_TEST") == "true"
- }
- }
- subprojects {
- buildscript {
- repositories {
- gradlePluginPortal()
- google()
- mavenCentral()
- }
- }
- 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}"
- }
- }
|