-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (31 loc) · 1005 Bytes
/
build.gradle
File metadata and controls
39 lines (31 loc) · 1005 Bytes
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
plugins {
id 'java'
id 'application'
}
group = 'org.javateam11'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// HTTP 클라이언트 (Spring과 통신용)
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
// JSON 처리 (API 응답 파싱용)
implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.1'
implementation 'com.fasterxml.jackson.core:jackson-core:2.16.1'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.16.1'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.16.1'
// 로깅
implementation 'org.slf4j:slf4j-api:2.0.9'
implementation 'ch.qos.logback:logback-classic:1.4.14'
// 테스트
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
// 메인 클래스 지정
application {
mainClass = 'org.javateam11.ClassroomReservation.Main'
}
test {
useJUnitPlatform()
}