forked from testcontainers/testcontainers-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
17 lines (13 loc) · 683 Bytes
/
build.gradle
File metadata and controls
17 lines (13 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
description = "Testcontainers :: Selenium"
dependencies {
api project(':testcontainers')
provided 'org.seleniumhq.selenium:selenium-remote-driver:3.141.59'
provided 'org.seleniumhq.selenium:selenium-chrome-driver:4.7.2'
testImplementation 'org.seleniumhq.selenium:selenium-firefox-driver:3.141.59'
testImplementation 'org.seleniumhq.selenium:selenium-support:3.141.59'
testImplementation 'org.mortbay.jetty:jetty:6.1.26'
testImplementation project(':nginx')
testImplementation 'org.rnorth.visible-assertions:visible-assertions:2.1.2'
compileOnly 'org.jetbrains:annotations:23.0.0'
testCompileClasspath 'org.jetbrains:annotations:23.0.0'
}