davx5-ose/build.gradle

49 lines
1.6 KiB
Groovy
Raw Normal View History

/***************************************************************************************************
* Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
**************************************************************************************************/
buildscript {
2019-04-17 20:52:09 +00:00
ext.versions = [
2023-07-21 15:10:13 +00:00
aboutLibraries: '10.8.3',
2022-08-15 10:39:57 +00:00
appIntro: '6.2.0',
composeBom: '2023.06.01',
2023-07-21 15:10:13 +00:00
hilt: '2.47',
kotlin: '1.8.22', // keep in sync with app/build.gradle composeOptions.kotlinCompilerExtensionVersion
okhttp: '4.11.0',
room: '2.5.2',
2020-09-19 12:00:58 +00:00
// latest Apache Commons versions that don't require Java 8 (Android 7)
commonsCollections: '4.2',
commonsLang: '3.8.1',
commonsText: '1.3',
// own libraries
2023-07-21 15:10:13 +00:00
cert4android: 'f167e84',
dav4jvm: 'da94a8b',
ical4android: 'a78e72f',
vcard4android: 'bd08206'
2019-04-17 20:52:09 +00:00
]
2017-07-08 11:08:50 +00:00
repositories {
2018-03-15 12:10:46 +00:00
google()
2021-05-04 18:36:20 +00:00
mavenCentral()
2020-11-17 22:35:08 +00:00
// AboutLibraries
maven { url "https://plugins.gradle.org/m2/" }
}
2020-11-17 22:35:08 +00:00
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath "com.google.dagger:hilt-android-gradle-plugin:${versions.hilt}"
2020-04-19 13:12:29 +00:00
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:${versions.aboutLibraries}"
2019-04-17 20:52:09 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
}
}
allprojects {
repositories {
2018-03-15 12:10:46 +00:00
google()
2021-05-04 18:36:20 +00:00
mavenCentral()
// AppIntro, dav4jvm
maven { url "https://jitpack.io" }
}
2023-03-02 11:52:21 +00:00
}