-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
30 lines (27 loc) · 1.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
plugins {
id 'org.springframework.boot' version '2.2.0.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'me.codeboy.doc'
version = '0.0.1'
sourceCompatibility = '1.8'
repositories {
mavenLocal()
maven { url "https://maven.aliyun.com/repository/public/" }
mavenCentral()
}
dependencies {
testCompile 'org.springframework.boot:spring-boot-starter-test:2.2.0.RELEASE'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:2.2.0.RELEASE'
implementation 'org.springframework.boot:spring-boot-devtools:2.2.0.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-web:2.2.0.RELEASE'
compile 'com.google.guava:guava:27.1-jre'
compile "com.alibaba:fastjson:1.2.55"
compile "org.jsoup:jsoup:1.12.1"
compile "me.codeboy.common:base:1.3.7"
compile 'com.baomidou:mybatis-plus-boot-starter:3.1.1'
compile 'mysql:mysql-connector-java:8.0.16'
compile 'org.elasticsearch:elasticsearch:7.5.0'
compile 'org.elasticsearch.client:elasticsearch-rest-client:7.5.0'
}