-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
44 lines (41 loc) · 1.12 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlinVersion = '2.0.21'
ext.okhttpVersion = '4.12.0'
ext.gsonVersion = '2.11.0'
ext.jjwtVersion = 'd6feebe558'
ext.retrofitVersion = '2.11.0'
ext.coroutineAdapterVersion = '0.9.2'
ext.coroutinesVersion = '1.9.0'
ext.bouncycastleVersion = '1.70'
ext.ed25519Version = '0.3.0'
ext.curve25519Version = '0.5.0'
ext.bignumVersion = '0.3.10'
ext.ktlintVersion = '0.45.1'
repositories {
google()
jcenter()
gradlePluginPortal()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
jcenter()
gradlePluginPortal()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
task ktlintFormat(group: "formatting") {
dependsOn ':library:ktlintFormat'
dependsOn ':samples:ktlintFormat'
}