nextcloud-android/build.gradle
dependabot[bot] 70d07d8f23
Bump kotlin_version from 1.8.22 to 1.9.22
Bumps `kotlin_version` from 1.8.22 to 1.9.22.

Updates `org.jetbrains.kotlin:kotlin-gradle-plugin` from 1.8.22 to 1.9.22
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.8.22...v1.9.22)

Updates `org.jetbrains.kotlin:kotlin-stdlib` from 1.8.22 to 1.9.22
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.8.22...v1.9.22)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlin:kotlin-stdlib
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-02-04 13:17:56 +00:00

60 lines
1.4 KiB
Groovy

buildscript {
ext {
androidPluginVersion = '8.2.2'
appCompatVersion = '1.6.1'
jacoco_version = '0.8.11'
kotlin_version = '1.9.22'
androidxTestVersion = "1.5.0"
daggerVersion = "2.50"
markwonVersion = "4.6.2"
prismVersion = "2.0.0"
androidLibraryVersion = "9bfb850257"
mockitoVersion = "4.11.0"
mockitoKotlinVersion = "4.1.0"
mockkVersion = "1.13.9"
espressoVersion = "3.5.1"
workRuntime = "2.8.1"
fidoVersion = "4.1.0-patch2"
checkerVersion = "3.21.2"
exoplayerVersion = "2.19.1"
documentScannerVersion = "1.1.1"
roomVersion = "2.5.2"
ciBuild = System.getenv("CI") == "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}"
}
}