-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
19 lines (14 loc) · 731 Bytes
/
build.gradle
File metadata and controls
19 lines (14 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
description = "Testcontainers :: Selenium"
dependencies {
api project(':testcontainers')
provided 'org.seleniumhq.selenium:selenium-remote-driver:4.10.0'
provided 'org.seleniumhq.selenium:selenium-chrome-driver:4.10.0'
testImplementation platform('org.seleniumhq.selenium:selenium-bom:4.13.0')
testImplementation 'org.seleniumhq.selenium:selenium-firefox-driver'
testImplementation 'org.seleniumhq.selenium:selenium-edge-driver'
testImplementation 'org.seleniumhq.selenium:selenium-support'
testImplementation 'org.mortbay.jetty:jetty:6.1.26'
testImplementation project(':nginx')
testImplementation 'org.assertj:assertj-core:3.26.3'
compileOnly 'org.jetbrains:annotations:26.0.2'
}