-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
83 lines (66 loc) · 2.63 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
74
75
76
77
78
79
80
81
82
83
plugins { // 스프링부트 버전 플러그인
id 'org.springframework.boot' version '2.4.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
//group 은 프로젝트 생성시의 groupId, version 은 애플리케이션의 버전
group = 'com.example'
version = '0.0.1-SNAPSHOT'
//자바 컴파일 메소드 버전
sourceCompatibility = 1.8
targetCompatibility = 1.8
//인코딩 방식
compileJava.options.encoding = 'UTF-8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
//Gradle 을 통해 라이브러리를 가져오는 경로
repositories {
mavenCentral()
}
//스프링 부트 디펜던시 추가 하는곳
dependencies {
implementation 'org.jetbrains:annotations:19.0.0'
implementation 'org.testng:testng:7.1.0'
// Spring Boot Starter
testImplementation ('org.springframework.boot:spring-boot-starter-test')
// Lombok
implementation ('org.projectlombok:lombok')
compileOnly ('org.projectlombok:lombok:1.18.22')
annotationProcessor ('org.projectlombok:lombok:1.18.22')
// test
implementation('org.springframework.boot:spring-boot-test-autoconfigure:2.4.2')
implementation 'org.hamcrest:hamcrest-core:1.3'
// randomStringUtils
implementation 'org.apache.commons:commons-lang3:3.12.0'
// DB
runtimeOnly ('mysql:mysql-connector-java') //mysql8
//runtimeOnly 'mysql:mysql-connector-java:5.1.47' //mysql5
implementation ('org.springframework.boot:spring-boot-starter-data-jpa')
compile ('mysql:mysql-connector-java')
// Web
implementation ('org.springframework.boot:spring-boot-starter-web')
// Security, Authentication
implementation('org.springframework.boot:spring-boot-starter-security')
compile(group: 'io.jsonwebtoken', name: 'jjwt', version: '0.7.0')
compile('io.jsonwebtoken:jjwt:0.9.0')
// apple
implementation ('org.springframework.security:spring-security-oauth2-client')
implementation 'com.google.code.gson:gson:2.8.6'
implementation('org.springframework.boot:spring-boot-starter')
compile('org.springframework.boot:spring-boot-starter-web')
// swagger dependency
implementation "io.springfox:springfox-boot-starter:3.0.0"
implementation "io.springfox:springfox-swagger-ui:3.0.0"
// AWS S3
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
// push firebase
implementation 'com.google.firebase:firebase-admin:6.8.1'
implementation(group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.2.2')
implementation group: 'com.turo', name: 'pushy', version: '0.13.10'
}
test {
useJUnitPlatform()
}