-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (22 loc) · 832 Bytes
/
build.gradle
File metadata and controls
25 lines (22 loc) · 832 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.18'
}
apply plugin: 'io.spring.dependency-management'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.seleniumhq.selenium:selenium-remote-driver'
implementation 'org.seleniumhq.selenium:selenium-firefox-driver'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.testcontainers:testcontainers-selenium'
testImplementation 'org.testcontainers:testcontainers-junit-jupiter'
testImplementation 'org.assertj:assertj-core:3.27.4'
testRuntimeOnly "org.junit.platform:junit-platform-launcher:1.8.2"
}
test {
useJUnitPlatform()
}