-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.gradle.kts
36 lines (31 loc) · 952 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
}
dependencies {
// Declared here such that a custom reporter can be used
classpath(libs.gradleVersions.gradle)
}
}
plugins {
alias(libs.plugins.kotlin.plugin.serialization) apply false
alias(libs.plugins.dependencyAnalysis)
com.github.`ben-manes`.versions
com.edricchan.studybuddy.`dependency-updates`
alias(libs.plugins.testAggregation.results)
alias(libs.plugins.aboutLibraries) apply false
}
tasks {
val clean by registering(Delete::class) {
delete(rootProject.layout.buildDirectory)
}
}
dependencyAnalysis {
// See https://github.com/autonomousapps/dependency-analysis-android-gradle-plugin/wiki/Customizing-plugin-behavior#ktx-dependencies
issues {
structure {
ignoreKtx(true)
}
}
}