-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (27 loc) · 1.06 KB
/
build.gradle
File metadata and controls
33 lines (27 loc) · 1.06 KB
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
plugins {
id "java"
id "org.springframework.boot" version "2.1.1.RELEASE"
id "io.spring.dependency-management" version "1.0.6.RELEASE"
}
group = 'com.windhc'
version = '1.0.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-security")
compile "org.mybatis.spring.boot:mybatis-spring-boot-starter:1.3.2"
compile "com.github.pagehelper:pagehelper-spring-boot-starter:1.2.5"
compile "tk.mybatis:mapper-spring-boot-starter:2.0.2"
compile "com.windhc:cors-spring-boot-starter:1.0.0"
compile "io.jsonwebtoken:jjwt:0.9.0"
compile("commons-io:commons-io:2.6")
compile "org.apache.commons:commons-lang3:3.7"
compile("net.coobird:thumbnailator:[0.4, 0.5)")
compile("com.upyun:java-sdk:3.20")
runtime("mysql:mysql-connector-java:8.0.13")
testCompile("org.springframework.boot:spring-boot-starter-test")
}