-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
69 lines (52 loc) ยท 2.09 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
67
68
69
plugins {
id 'org.springframework.boot' version '2.4.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id "io.freefair.lombok" version "5.3.0"
}
group = 'com.khumu'
version = '0.0.0'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.projectlombok:lombok:1.18.20'
// ํธ๋ฆฌํ ๊ธฐ๋ฅ์ ์ํ lombok
annotationProcessor 'org.projectlombok:lombok'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'junit:junit:4.12'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation("com.slack.api:slack-api-client:1.12.1")
// gson
implementation('com.google.code.gson:gson:2.8.0')
implementation 'mysql:mysql-connector-java:8.0.25'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// logger
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.+'
// fcm push
implementation 'com.google.firebase:firebase-admin:7.1.0'
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2',
// Uncomment the next line if you want to use RSASSA-PSS (PS256, PS384, PS512) algorithms:
//'org.bouncycastle:bcprov-jdk15on:1.60',
'io.jsonwebtoken:jjwt-jackson:0.11.2' // for jackson
// 'io.jsonwebtoken:jjwt-gson:0.11.2' // for gson
// dto, entitiy mapper
implementation 'org.mapstruct:mapstruct:1.4.2.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.2.Final'
implementation 'io.awspring.cloud:spring-cloud-starter-aws-messaging:2.3.0'
}
compileJava{
options.compilerArgs += [
/**
* -Amapstruct.*์ mapstruct processor configurations
*/
'-Amapstruct.defaultComponentModel=spring', // Spring์ dependency injection ์ด์ฉ
'-Amapstruct.verbose=false' // ์ปดํ์ผ ๋ก๊ทธ๋ฅผ ๋ ๋ณด๊ณ ์ถ์ผ๋ฉด ์ผ
]
}
test {
useJUnitPlatform()
}