-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathbuild.gradle
70 lines (46 loc) · 1.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
apply plugin: 'java'
ext {
libraries = [
kotlinx_cli : "0.3.2",
kotlinx_coroutines_core : "1.8.1-Beta",
joor_java : "0.9.14",
rxjava3 : "3.1.8",
rxjava2 : "2.2.21",
gson : "2.10.1",
fastjson : "1.2.76",
spring : "5.2.3.RELEASE",
guava : "33.1.0-jre",
caffeine : "2.9.3",
okio : "3.9.0",
mapdb : "3.1.0",
moshi : "1.15.0",
protostuff : "1.7.4",
ktor : "1.6.4",
chronicle_map : "3.25ea6",
bytekit : "v1.3.0",
coroutines_utils : "v1.1.8"
]
}
group 'com.safframework.rxcache'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
buildscript {
ext.kotlin_version = '1.9.21'
repositories {
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:5.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}