-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (34 loc) · 1.68 KB
/
build.gradle
File metadata and controls
38 lines (34 loc) · 1.68 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
34
35
36
37
38
plugins {
id 'org.springframework.boot' version '2.4.0'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}
group = 'com.mesh'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.4'
implementation 'org.projectlombok:lombok:1.18.16'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// https://mvnrepository.com/artifact/mysql/mysql-connector-java
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.22'
// https://mvnrepository.com/artifact/com.baomidou/mybatis-plus
compile group: 'com.baomidou', name: 'mybatis-plus', version: '3.4.1'
compile group: 'com.baomidou', name: 'mybatis-plus-generator', version: '3.4.1'
compile group: 'org.apache.velocity', name: 'velocity-engine-core', version: '2.2'
// https://mvnrepository.com/artifact/org.springframework/spring-web
compile group: 'org.springframework', name: 'spring-web', version: '5.3.1'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.4.0'
// https://mvnrepository.com/artifact/org.springframework.session/spring-session-core
compile group: 'org.springframework.session', name: 'spring-session-core', version: '2.4.1'
// Mail & Redis
compile group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '2.5.0'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: '2.4.5'
}
test {
useJUnitPlatform()
}