davx5-ose/build.gradle
2022-05-12 10:39:26 +02:00

45 lines
1.2 KiB
Groovy

/*
* Copyright (c) Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*/
buildscript {
ext.versions = [
aboutLibraries: '8.9.4',
appIntro: '6.1.0',
dav4jvm: '2.1.4',
kotlin: '1.6.21',
okhttp: '4.9.3',
// latest Apache Commons versions that don't require Java 8 (Android 7)
commonsCollections: '4.2',
commonsLang: '3.8.1',
commonsText: '1.3'
]
repositories {
google()
mavenCentral()
// AboutLibraries
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.0'
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:${versions.aboutLibraries}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
}
}
allprojects {
repositories {
google()
mavenCentral()
// AppIntro, dav4jvm
maven { url "https://jitpack.io" }
}
}