-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (51 loc) · 1.91 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
54
55
56
57
58
59
60
61
62
63
64
65
66
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.8'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'com.base'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// 스프링부트
implementation 'org.springframework.boot:spring-boot-starter'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// DB
implementation 'com.mysql:mysql-connector-j'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'com.h2database:h2:'
//mail
implementation 'org.springframework.boot:spring-boot-starter-mail'
// Web
implementation 'org.springframework.boot:spring-boot-starter-web'
// dev tools
developmentOnly 'org.springframework.boot:spring-boot-devtools'
//jjwt
implementation(group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.4')
implementation(group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.4')
implementation(group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.4')
//swagger
implementation 'io.springfox:springfox-boot-starter:3.0.0'
//lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
//spring security
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
// https://mvnrepository.com/artifact/com.github.ulisesbocchio/jasypt-spring-boot-starter
// yml 암호화
implementation group: 'com.github.ulisesbocchio', name: 'jasypt-spring-boot-starter', version: '3.0.4'
implementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.8.1'
}
tasks.named('test') {
useJUnitPlatform()
}