-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
38 lines (34 loc) · 889 Bytes
/
build.gradle
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
37
38
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
ext.kotlin_version = '1.9.23'
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.android.tools.build:gradle:8.2.2'
classpath "gradle.plugin.com.github.spotbugs.snom:spotbugs-gradle-plugin:4.7.1"
classpath 'org.codehaus.groovy:groovy-xml:3.0.19'
}
}
//plugins {
// id 'com.google.devtools.ksp' version '1.9.22-1.0.17' apply false
//}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
apply plugin: "checkstyle"
checkstyle {
toolVersion '10.3.1'
}
tasks.register('checkstyle', Checkstyle) {
classpath = files()
source "${project.rootDir}"
exclude("**/gen/**")
exclude("**/generated/**")
}