-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (26 loc) · 887 Bytes
/
build.gradle
File metadata and controls
31 lines (26 loc) · 887 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
plugins {
id 'java'
id 'war'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation 'org.java-websocket:Java-WebSocket:1.5.3'
// JSON 데이터의 직렬화/역직렬화 관련 라이브러리
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'org.json:json:20231013'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
// 로깅
implementation 'org.slf4j:slf4j-api:2.0.9'
implementation 'ch.qos.logback:logback-classic:1.4.11'
implementation 'org.eclipse.jetty:jetty-server:9.4.51.v20230217'
implementation 'org.eclipse.jetty:jetty-servlet:9.4.51.v20230217'
}
test {
useJUnitPlatform()
}