-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
45 lines (41 loc) · 1.71 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.0'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
}
group = 'moe.dazecake'
version = '1.3.1'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenLocal()
maven {url 'https://maven.aliyun.com/nexus/content/groups/public/'}
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-websocket:2.7.0'
testImplementation 'junit:junit:4.13.1'
compileOnly 'org.projectlombok:lombok:1.18.24'
developmentOnly 'org.springframework.boot:spring-boot-devtools:2.7.0'
runtimeOnly 'mysql:mysql-connector-java:8.0.29'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.7.0'
implementation 'com.baomidou:mybatis-plus-boot-starter:3.5.2'
implementation 'org.springdoc:springdoc-openapi-ui:1.6.9'
implementation 'com.auth0:java-jwt:3.19.2'
implementation 'commons-codec:commons-codec:1.15'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'org.springframework.boot:spring-boot-starter-mail:2.7.0'
implementation 'com.gitee.sunchenbin.mybatis.actable:mybatis-enhance-actable:1.5.0.RELEASE'
implementation 'com.alibaba:druid-spring-boot-starter:1.2.11'
implementation 'com.zjiecode:wxpusher-java-sdk:2.1.4'
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
implementation 'com.qcloud:cos_api:5.6.105'
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
implementation 'org.mapstruct:mapstruct:1.5.3.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.3.Final'
}