Skip to content

Commit 5310600

Browse files
committed
install testcontainers from jitpack
the method signature of `ChromeOptions#addArguments` has changed: testcontainers/testcontainers-java#4593 (comment) until testcontainers/testcontainers-java#4609 is merged and released, testcontainers artifacts should be installed from jitpack instead of maven so that changes in this open pull request are included.
1 parent eaca681 commit 5310600

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

build.gradle

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,15 @@ dependencies {
8787
implementation 'com.github.jkatzwinkel:tla-common:main-SNAPSHOT'
8888
implementation 'com.github.rosmord.jsesh:jsesh:release-7.5.5'
8989

90-
testImplementation 'org.seleniumhq.selenium:selenium-remote-driver:4.1.0'
91-
testImplementation 'org.seleniumhq.selenium:selenium-chrome-driver:4.1.0'
92-
testImplementation 'org.seleniumhq.selenium:selenium-support:4.1.0'
93-
testImplementation 'org.testcontainers:selenium:1.16.2'
94-
testImplementation 'org.testcontainers:junit-jupiter:1.16.2'
95-
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.6.1'
90+
testImplementation 'org.seleniumhq.selenium:selenium-remote-driver:4.1.1'
91+
testImplementation 'org.seleniumhq.selenium:selenium-chrome-driver:4.1.1'
92+
testImplementation 'org.seleniumhq.selenium:selenium-support:4.1.1'
93+
// can be changed back to maven central (org.testcontainers) once
94+
// https://github.com/testcontainers/testcontainers-java/pull/4609
95+
// is merged:
96+
testImplementation 'com.github.testcontainers.testcontainers-java:selenium:selenium-refactoring-SNAPSHOT'
97+
testImplementation 'com.github.testcontainers.testcontainers-java:junit-jupiter:selenium-refactoring-SNAPSHOT'
98+
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.6.2'
9699
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2'
97100
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
98101
}

0 commit comments

Comments
 (0)