forked from UMC-TogeDutch-Project/TogeDutch_BACKEND_JPA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
72 lines (59 loc) ยท 2.59 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.12'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'togetdutch'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '11'
}
// ๋น๋ ์ plain jar ์์ฑํ์ง ์๋๋ก ์ค์
jar {
enabled = false
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
// repositories๋ ๊ฐ์ข
์์กด์ฑ(๋ผ์ด๋ธ๋ด)๋ฅผ ์ด๋ค ์๊ฒฉ ์ ์ฅ์์์ ๋ฐ์์ง๋ฅผ ์ ํ๋ค
repositories {
// ๊ธฐ๋ณธ์ ์ผ๋ก mavenCentral ๋ง์ด ์ฌ์ฉ > ์ต๊ทผ ๋ผ์ด๋ธ๋ฌ๋ฆฌ ์
๋ก๋ ๋์ด๋ ๋๋ฌธ์ jcenter๋ ๋ง์ด ์ฌ์ฉ
mavenCentral()
}
// ํ๋ก์ ํธ ๊ฐ๋ฐ์ ํ์ํ ์์กด์ฑ๋ค์ ์ ์ธํ๋ ๊ณณ
dependencies {
runtimeOnly 'com.mysql:mysql-connector-j'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
// ์ถ๊ฐ ์์
implementation 'org.springframework.boot:spring-boot-starter-web-services'
implementation 'commons-io:commons-io:2.11.0' /* Apache commons-io */
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: '1.4'
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
compileOnly(group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.1')
compileOnly('io.jsonwebtoken:jjwt:0.9.1')
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13'
implementation 'com.google.code.gson:gson:2.8.7'
compileOnly(group: 'io.jsonwebtoken', name: 'jjwt', version: '0.7.0')
implementation(group: 'io.jsonwebtoken', name: 'jjwt', version: '0.7.0')
implementation('io.jsonwebtoken:jjwt:0.9.0')
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.springframework.boot:spring-boot-starter-mail'
// swagger
//https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui
implementation group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2'
implementation group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2'
// firebase
implementation 'com.google.firebase:firebase-admin:6.8.1'
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.2.2'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}