Skip to content

Commit

Permalink
Updated dependencies for the latest WebDriver version
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Mar 25, 2016
1 parent 56b0278 commit 4f3ce09
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ subprojects {

ext {
seleniumVersion = '2.53.0'
htmlunitVersion = '2.20'
groovyVersion = '2.4.4'
gradleVersion = '2.10'
junitVersion = '4.12'
Expand All @@ -38,7 +39,7 @@ ext {
commonsIoVersion = '2.4'
commonsCollectionsVersion = '3.2.2'
commonsLang3Version = '3.4'
commonsCodecVersion = '1.9'
commonsCodecVersion = '1.10'
xstreamVersion = '1.4.8'
jodaTimeVersion = '2.7'
lambdajVersion = '2.3.3'
Expand Down
16 changes: 13 additions & 3 deletions serenity-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ dependencies {
exclude group: 'xml-apis', module: 'xml-apis'
}

compile("org.seleniumhq.selenium:htmlunit-driver:${htmlunitVersion}"){
exclude group: 'org.seleniumhq.selenium', module: 'selenium-java'
exclude group: 'org.seleniumhq.selenium', module: 'selenium-remote-driver'
exclude group: 'commons-codec', module: 'commons-codec'
}

compile('io.appium:java-client:3.3.0') {
exclude group: 'org.seleniumhq.selenium', module: 'selenium-java'
exclude group: 'org.seleniumhq.selenium', module: 'selenium-remote-driver'
Expand Down Expand Up @@ -93,16 +99,20 @@ dependencies {
}
compile "org.hamcrest:hamcrest-core:${hamcrestVersion}"
compile "org.hamcrest:hamcrest-library:${hamcrestVersion}"
compile("net.sourceforge.htmlunit:htmlunit:2.19") {
compile("net.sourceforge.htmlunit:htmlunit:${htmlunitVersion}") {
exclude group: 'org.apache.commons', module: 'commons-lang3'
exclude group: 'commons-logging', module: 'commons-logging'
exclude group: 'xml-apis', module: 'xml-apis'
exclude group: 'commons-codec', module: 'commons-codec'
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
exclude group: 'org.apache.httpcomponents', module: 'httpmime'
}
compile 'org.apache.httpcomponents:httpclient:4.4.1'
compile 'org.apache.httpcomponents:httpmime:4.4.1'
compile ('org.apache.httpcomponents:httpclient:4.5.2') {
exclude group: 'commons-codec', module: 'commons-codec'
}
compile ('org.apache.httpcomponents:httpmime:4.5.2'){
exclude group: 'commons-codec', module: 'commons-codec'
}

compile("org.fluentlenium:fluentlenium-core:0.10.2") {
exclude group: 'org.seleniumhq.selenium', module: 'selenium-java'
Expand Down

0 comments on commit 4f3ce09

Please sign in to comment.