nextpush-android/build.gradle

46 lines
1.3 KiB
Groovy
Raw Normal View History

2021-11-22 09:27:58 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.9.22'
2021-11-22 09:27:58 +01:00
repositories {
google()
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
content {
includeModule 'org.jlleitschuh.gradle', 'ktlint-gradle'
}
}
2021-11-22 09:27:58 +01:00
}
dependencies {
2024-10-28 15:15:36 +01:00
classpath 'com.android.tools.build:gradle:8.7.1'
2021-11-22 09:27:58 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2023-08-31 08:28:01 +02:00
classpath "org.jlleitschuh.gradle:ktlint-gradle:11.5.1"
2021-11-22 09:27:58 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
2023-01-22 18:40:27 +01:00
maven {
url "https://www.jitpack.io"
content {
includeModule 'com.github.nextcloud', 'Android-SingleSignOn'
}
}
maven {
url "https://codeberg.org/NextPush/maven/raw/branch/main/okhttp-sse/releases/"
content {
includeModule "com.squareup.okhttp3", "okhttp-sse"
}
}
mavenLocal()
2021-11-22 09:27:58 +01:00
}
apply plugin: "org.jlleitschuh.gradle.ktlint"
2021-11-22 09:27:58 +01:00
}
task clean(type: Delete) {
delete rootProject.buildDir
}