forked from songzhen110/howcool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
53 lines (41 loc) · 1.38 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
plugins {
id 'org.springframework.boot' version '2.1.3.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
group = 'com.songzhen'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
//mavenCentral()
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
}
dependencies {
//spring-boot-starter
implementation 'org.springframework.boot:spring-boot-starter'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
//spring-boot-starter-web
implementation 'org.springframework.boot:spring-boot-starter-web'
//工具库
compile 'com.google.guava:guava:27.0.1-jre'
compile 'cn.hutool:hutool-all:4.1.19'
compile 'com.alibaba:fastjson:1.2.47'
//logging
implementation 'org.springframework.boot:spring-boot-starter-logging'
//mysql
compile('mysql:mysql-connector-java:5.1.46')
//数据库支持
compile('com.baomidou:mybatis-plus-boot-starter:2.3')
compile('com.alibaba:druid-spring-boot-starter:1.1.10')
//xxl-job
compile 'com.xuxueli:xxl-job-core:2.0.1'
//player
compile 'javazoom:jlayer:1.0.1'
//redis
compile 'org.apache.commons:commons-pool2'
compile 'org.springframework.boot:spring-boot-starter-data-redis'
//jsonWebToken
compile 'io.jsonwebtoken:jjwt:0.9.0'
//HBASE
compile 'org.apache.hbase:hbase-client:2.0.5'
}