-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
66 lines (49 loc) · 1.69 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.6.2'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'com.kbds'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '11'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
//h2 DB
runtimeOnly 'com.h2database:h2'
runtimeOnly ('mysql:mysql-connector-java') //mysql8
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
//jasypt 설정파일 암호화 라이브러리
implementation 'com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.5'
// Security, Authentication
// 시큐리티 추가
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
// swagger 문서화
implementation 'io.springfox:springfox-boot-starter:3.0.0'
implementation 'io.springfox:springfox-swagger-ui:3.0.0'
//pdf view
implementation 'com.itextpdf:itext7-core:7.2.6'
// // 이미지 S3 업로드
// implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
// implementation 'com.amazonaws:aws-java-sdk-s3:1.12.476'
// implementation 'org.apache.tika:tika-core:2.5.0'
// annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
}
tasks.named('test') {
useJUnitPlatform()
}