-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
46 lines (42 loc) · 1.66 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
plugins {
id 'org.springframework.boot' version '2.4.1'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}
group = 'com.doubleslash'
version = '1.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'junit:junit:4.12'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'mysql:mysql-connector-java'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// 스프링 시큐리티 설정
implementation 'org.springframework.boot:spring-boot-starter-security'
// JWT 형식의 토큰을 발행하고 검증하는 모듈 (세션-쿠키 기반 X 토큰 O)
implementation 'io.jsonwebtoken:jjwt:0.9.1'
// entityManagerFactory 오류
//implementation group: 'org.javassist', name: 'javassist', version: '3.15.0-GA'
compile group: 'org.jsoup', name: 'jsoup', version: '1.11.3' // 파싱
// yml 상수값 불러오기
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
// aspect
implementation 'org.springframework.boot:spring-boot-starter-aop'
// list -> set
implementation("com.google.guava:guava:28.2-jre")
// api tool
compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.5.0'
compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.5.0'
}