Skip to content

Commit

Permalink
Declare Selenium dependencies to avoid them being overridden by other…
Browse files Browse the repository at this point in the history
… transitive dependencies.
  • Loading branch information
wakaleo committed Dec 2, 2017
1 parent b383810 commit d12e283
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions serenity-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,14 @@ dependencies {

}

compile("org.seleniumhq.selenium:selenium-java:$seleniumVersion")
compile("org.seleniumhq.selenium:selenium-api:$seleniumVersion")
compile("org.seleniumhq.selenium:selenium-chrome-driver:$seleniumVersion")
compile("org.seleniumhq.selenium:selenium-edge-driver:$seleniumVersion")
compile("org.seleniumhq.selenium:selenium-remote-driver:$seleniumVersion")
compile("org.seleniumhq.selenium:selenium-safari-driver:$seleniumVersion")
compile("org.seleniumhq.selenium:selenium-support:$seleniumVersion")

compile("com.codeborne:phantomjsdriver:${phantomjsDriverVersion}") {
exclude group: 'xml-apis', module: 'xml-apis'
exclude group: "commons-codec", module:"commons-codec"
Expand Down

0 comments on commit d12e283

Please sign in to comment.