-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (29 loc) · 1.08 KB
/
build.gradle
File metadata and controls
39 lines (29 loc) · 1.08 KB
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")
}
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")
// Selenium WebDriver and ChromeDriver with version 4.19.1
implementation 'org.seleniumhq.selenium:selenium-java:4.19.1'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver:4.19.1'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
// WebDriverManager 의존성
implementation 'io.github.bonigarcia:webdrivermanager:5.5.3'
implementation 'mysql:mysql-connector-java:8.0.33'
runtimeOnly 'com.mysql:mysql-connector-j'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
// JWT 의존성 추가
implementation 'io.jsonwebtoken:jjwt-api:0.12.3'
implementation 'io.jsonwebtoken:jjwt-impl:0.12.3'
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.3'
implementation 'org.apache.httpcomponents.client5:httpclient5:5.2'
}
tasks.test {
useJUnitPlatform()
}