-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
69 lines (60 loc) · 2.06 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
plugins {
id 'org.springframework.boot' version '2.7.3'
id 'io.spring.dependency-management' version '1.0.13.RELEASE'
id 'java'
}
group = 'com.kzou'
version = '0.0.1-SNAPSHOT'
jar.enabled = true
jar {
archivesBaseName = 'common-model'
manifest {
attributes "Manifest-Version": 1.0,
'Main-Class': 'com.frame.kzou.CommonApiApplication'
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'com.itextpdf:itextpdf:5.5.13'
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
implementation 'io.springfox:springfox-swagger2:2.9.2'
implementation 'com.alibaba:fastjson:2.0.11'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// Email
implementation 'org.apache.commons:commons-email:1.5'
// sqlite
implementation 'org.xerial:sqlite-jdbc:3.27.2'
implementation 'com.baomidou:mybatis-plus-boot-starter:3.4.3'
// ip2region
implementation 'org.lionsoul:ip2region:2.6.5'
implementation 'org.apache.commons:commons-collections4:4.4'
// log
implementation 'org.slf4j:slf4j-api:1.7.32'
implementation 'ch.qos.logback:logback-classic:1.2.6'
// qrCode
implementation 'com.google.zxing:core:3.3.0'
implementation 'com.google.zxing:javase:3.3.0'
// aop
implementation 'org.springframework:spring-aspects'
// network
// implementation 'org.apache.httpcomponents.client5:httpclient5:5.1.3'
implementation 'org.apache.httpcomponents:httpasyncclient:4.1.4'
implementation 'org.apache.httpcomponents:httpcore-nio:4.4.10'
// xpath parse (jsoup)
implementation 'org.jsoup:jsoup:1.14.3'
}
tasks.named('test') {
useJUnitPlatform()
}