-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
59 lines (45 loc) · 1.29 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.4.10'
id 'application'
}
group = 'me.user'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
//
api 'org.dom4j:dom4j:2.1.3'
//https://github.com/alibaba/easyexcel
//api 'com.alibaba:easyexcel:2.2.10'
// https://mvnrepository.com/artifact/log4j/log4j
implementation("log4j:log4j:1.2.17")
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
implementation("org.apache.logging.log4j:log4j-core:2.17.2")
//https://www.jianshu.com/p/242fef6d9de3
implementation("pull-parser:pull-parser:2.1.10")
//https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml/5.2.0
api 'org.apache.poi:poi-ooxml:5.2.2'
api 'org.apache.poi:poi-scratchpad:5.2.2'
// https://github.com/google/gson
api "com.google.code.gson:gson:2.9.0"
/**
* 网络库相关
*/
// https://github.com/square/okhttp
api 'com.squareup.okhttp3:okhttp:4.9.3'
api 'com.squareup.okhttp3:logging-interceptor:4.9.3'
}
test {
useJUnit()
}
compileKotlin {
kotlinOptions.jvmTarget = '1.8'
}
compileTestKotlin {
kotlinOptions.jvmTarget = '1.8'
}
application {
mainClassName = 'MainKt'
}