Skip to content

Commit

Permalink
Exclude bouncycastle dependencies (should fix #749)
Browse files Browse the repository at this point in the history
  • Loading branch information
bonigarcia committed Dec 27, 2023
1 parent 0b8854f commit 2c60c24
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
8 changes: 6 additions & 2 deletions selenium-webdriver-junit5-seljup/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,17 @@ dependencies {

testImplementation("org.seleniumhq.selenium:selenium-java:${seleniumVersion}")
testImplementation("org.junit.jupiter:junit-jupiter:${junit5Version}")
testImplementation("io.github.bonigarcia:selenium-jupiter:${selJupVersion}")
testImplementation("io.github.bonigarcia:selenium-jupiter:${selJupVersion}") {
exclude group: "org.bouncycastle", module: "*"
}
testImplementation("org.assertj:assertj-core:${assertjVersion}")

testImplementation("org.seleniumhq.selenium:htmlunit-driver:${htmlunitVersion}") {
exclude group: "org.seleniumhq.selenium", module: "*"
}
testImplementation("org.seleniumhq.selenium:selenium-grid:${seleniumVersion}")
testImplementation("org.seleniumhq.selenium:selenium-grid:${seleniumVersion}") {
exclude group: "org.bouncycastle", module: "*"
}
testImplementation("io.github.artsok:rerunner-jupiter:${rerunnerVersion}")
testImplementation("org.awaitility:awaitility:${awaitilityVersion}")
testImplementation("org.junit.platform:junit-platform-launcher:${junitPlatformVersion}")
Expand Down
12 changes: 12 additions & 0 deletions selenium-webdriver-junit5-seljup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@
<artifactId>selenium-jupiter</artifactId>
<version>${selenium-jupiter.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
Expand All @@ -99,6 +105,12 @@
<artifactId>selenium-grid</artifactId>
<version>${selenium.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.github.artsok</groupId>
Expand Down

0 comments on commit 2c60c24

Please sign in to comment.