mirror of
https://github.com/bitfireAT/davx5-ose.git
synced 2025-12-23 23:17:50 -05:00
49 lines
1.4 KiB
Groovy
49 lines
1.4 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.0',
|
|
appIntro: '6.1.0',
|
|
dav4jvm: '7dda4ab5',
|
|
dokka: '0.10.1',
|
|
kotlin: '1.5.20',
|
|
okhttp: '4.9.1',
|
|
// 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:4.2.2'
|
|
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:${versions.aboutLibraries}"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
|
|
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${versions.dokka}"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url 'https://dl.bintray.com/google/flexbox-layout/' }
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|