funkwhale-android/build.gradle.kts

44 wiersze
863 B
Plaintext
Czysty Zwykły widok Historia

2019-10-21 21:26:06 +00:00
buildscript {
2021-08-04 08:41:42 +00:00
2019-10-21 21:26:06 +00:00
repositories {
google()
2021-08-02 11:24:12 +00:00
mavenCentral()
gradlePluginPortal()
2019-10-21 21:26:06 +00:00
}
dependencies {
classpath("com.android.tools.build:gradle:7.2.2")
2021-08-04 08:41:42 +00:00
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath("com.github.bjoernq:unmockplugin:${Versions.unmock}")
classpath("com.github.ben-manes:gradle-versions-plugin:${Versions.gradleDependencyPlugin}")
2021-08-06 19:16:46 +00:00
classpath("org.jacoco:org.jacoco.core:${Versions.jacoco}")
2019-10-21 21:26:06 +00:00
}
}
allprojects {
2021-08-04 08:41:42 +00:00
2019-10-21 21:26:06 +00:00
repositories {
google()
2019-10-23 19:41:50 +00:00
maven(url = "https://jitpack.io")
jcenter()
2019-10-21 21:26:06 +00:00
}
}
2021-08-06 19:16:46 +00:00
subprojects {
configurations.all {
resolutionStrategy {
eachDependency {
if (this.requested.group == "org.jacoco") {
this.useVersion("0.8.7")
}
}
}
}
}
2019-10-21 21:26:06 +00:00
tasks {
val clean by registering(Delete::class) {
delete(buildDir)
}
}