-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
73 lines (62 loc) · 2.88 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
70
71
72
73
plugins {
id 'org.springframework.boot' version '2.6.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.bit'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// 메일 인증 (spring mail)
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc:2.5.5'
implementation 'org.springframework.boot:spring-boot-starter-jdbc:2.5.5'
implementation 'org.springframework.boot:spring-boot-starter-web:2.5.6'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
compileOnly 'org.projectlombok:lombok:1.18.22'
developmentOnly 'org.springframework.boot:spring-boot-devtools:2.5.5'
runtimeOnly 'mysql:mysql-connector-java:8.0.25'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.5.6'
implementation 'javax.xml.bind:jaxb-api:2.3.0-b170201.1204'
// slf4j & logback
implementation('org.slf4j:jcl-over-slf4j:1.7.32')
implementation('ch.qos.logback:logback-classic:1.2.6')
implementation('org.codehaus.groovy:groovy:3.0.8')// groovy 추가
implementation group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2'
implementation group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2'
implementation 'com.squareup.okhttp3:okhttp:4.9.0'// 업비트 api관련 OkHttpClient 클래스 관련 추가
implementation group: 'org.json', name: 'json', version: '20160810' // JSONOBJECT, JSONArray 클래스 추가
// 이메일 인증
implementation 'org.springframework.boot:spring-boot-starter-mail'
//sns
implementation platform('software.amazon.awssdk:bom:2.5.29')
//implementation 'software.amazon.awssdk:sns' // We only need to get SNS SDK in our case
// https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-aws-messaging
implementation group: 'org.springframework.cloud', name: 'spring-cloud-aws-messaging', version: '2.2.1.RELEASE'
// https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-aws
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-aws', version: '2.2.1.RELEASE'
implementation 'com.google.firebase:firebase-admin:7.1.1'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
//implementation 'com.google.firebase:firebase-analytics:17.2.2'
// implementation group: 'com.google.firebase', name: 'firebase-admin', version: '6.8.1'
}
test {
useJUnitPlatform()
}
// groovy 파일 aws에서 컴파일 하기위한 설정
apply plugin: 'groovy'
sourceSets {
main {
java { srcDirs = [] }
groovy { srcDirs += ['src/main/java'] }
}
}