-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
53 lines (48 loc) · 1.41 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
buildscript {
ext {
kotlin_version = '1.9.21'
coroutines_version = '1.7.3'
androidx_core_ktx_version = '1.12.0'
lifecycle_version = '2.6.2'
coil_version = '2.5.0'
ktor_version = '2.3.6'
logback_version = '1.2.11'
material_version = '1.10.0'
webkit_version = '1.9.0'
appcompat_version = '1.6.1'
recycler_version = '1.3.2'
constraint_layout_version = '2.1.4'
fragment_ktx_version = '1.6.2'
crypto_version = '1.1.0-alpha06'
serialization_json_version = '1.6.2'
junit_version = '4.13.2'
androidx_junit_version = '1.1.5'
espresso_version = '3.5.1'
mockk_version = '1.13.8'
core_testing_version = '2.2.0'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
}
}
plugins {
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
id "org.jmailen.kotlinter" version "3.10.0"
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://www.jitpack.io" }
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
apply from: "${rootDir}/maven/publish-root.gradle"