SeleniumHQ / htmlunit-driver

WebDriver compatible driver for HtmlUnit headless browser.
Apache License 2.0
256 stars 86 forks source link

Cant read input field with selenium 3.6 and htmlunitdriver 2.27 #60

Closed barancev closed 7 years ago

barancev commented 7 years ago

@Ben1980 commented on Tue Oct 24 2017

Meta -

OS: Windows 10 Selenium Version: 3.6.0 Browser: HtmlUnitDriver

Browser Version: HtmlUnitDriver 2.27

Expected Behavior -

Should be able to fill input field and read its content.

Actual Behavior -

With artifacts: org.seleniumhq.selenium:selenium-api:3.6.0 org.seleniumhq.selenium:selenium-java:3.6.0 org.seleniumhq.selenium:htmlunit-driver:2.27 Causing NoSuchMethodError: com.gargoylesoftware.htmlunit.html.Keyboard and getAttribute("value") returns empty string.

With artifacts: org.seleniumhq.selenium:selenium-api:2.53.1 org.seleniumhq.selenium:selenium-java:2.53.1 Everthing is fine.

Steps to reproduce -

Just get sources from Example and run it with gradlew.bat build or in your IDE

asashour commented 7 years ago

Please use HtmlUnit-Driver 2.28-snapshot, it depends on 3.6.0.

HtmlUnit-Driver 2.27 depends on 3.4.0

Ben1980 commented 7 years ago

Thanks, with 2.27 and 3.4.0 it is not working as well <- Same error as with 3.6.0 how do i get 2.28-snapshot? Its not on maven central rep, isn't it?

asashour commented 7 years ago

with 2.27 and 3.4.0 it is not working as well <- Same error as with 3.6.0

I believe you have a conflicting classpath, please run:

System.out.println(WebDriver.class.getProtectionDomain().getCodeSource().getLocation());

The snapshot can be found in maven snapshot repository.

Ben1980 commented 7 years ago

Thanks, this is my output for 2.27 with 3.4.0: file:/C:/Users/bmahr/.gradle/caches/modules-2/files-2.1/org.seleniumhq.selenium/selenium-api/3.4.0/bf91d238e6eb07f8496ccb61e12e2c868d2bc7e9/selenium-api-3.4.0.jar I think this is ok.

And with 2.28-SNAPSHOT and 3.6.0: file:/C:/Users/bmahr/.gradle/caches/modules-2/files-2.1/org.seleniumhq.selenium/selenium-api/3.6.0/7b1b49f371b754e4d5cdf5e0b98730771300bef6/selenium-api-3.6.0.jar NoClassDefFoundError: com/gargoylesoftware/js/nashorn/internal/objects/annotations/Browser

asashour commented 7 years ago

HtmlUnit snapshot has a dependency to:

<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>js</artifactId>
<version>3.0-SNAPSHOT</version>
Ben1980 commented 7 years ago

Still same error: org.seleniumhq.selenium:selenium-api:3.6.0 org.seleniumhq.selenium:selenium-java:3.6.0 org.seleniumhq.selenium:htmlunit-driver:2.28-SNAPSHOT net.sourceforge.htmlunit:js:3.0-SNAPSHOT

file:/C:/Users/bmahr/.gradle/caches/modules-2/files-2.1/org.seleniumhq.selenium/selenium-api/3.6.0/7b1b49f371b754e4d5cdf5e0b98730771300bef6/selenium-api-3.6.0.jar

Exception in thread "Thread-13" java.lang.NoSuchMethodError: com.gargoylesoftware.htmlunit.html.Keyboard.<init>(Z)V

And getAttribute("value") is returning empty string

asashour commented 7 years ago

What is the value of

System.out.println(com.gargoylesoftware.htmlunit.html.Keyboard.class.getProtectionDomain().getCodeSource().getLocation());
Ben1980 commented 7 years ago

file:/C:/Users/bmahr/.gradle/caches/modules-2/files-2.1/net.sourceforge.htmlunit/htmlunit/2.21/3e752dae0006ad516bf6f4138316db7b262912d0/htmlunit-2.21.jar

asashour commented 7 years ago

21?

This should be 28-snapshot.

Using maven will spare you all the hassle.

Ben1980 commented 7 years ago

i use gradle, should do the same:

` buildscript { ext { springBootVersion = '1.5.8.RELEASE' } repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") } }

group 'com.example' version '1.0-SNAPSHOT'

apply plugin: 'java' apply plugin: 'org.springframework.boot'

sourceCompatibility = 1.8

repositories { mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } }

task wrapper(type: Wrapper) { gradleVersion = '4.2.1' }

dependencies { compile( ['org.springframework.boot:spring-boot-starter-web'], ['org.springframework.boot:spring-boot-starter-jetty'], ['org.springframework.boot:spring-boot-starter-thymeleaf'] )

  testCompile(
          ['org.springframework.boot:spring-boot-starter-test'],
          ["org.seleniumhq.selenium:selenium-api:3.6.0"],
          ["org.seleniumhq.selenium:selenium-java:3.6.0"],
          ["org.seleniumhq.selenium:htmlunit-driver:2.28-SNAPSHOT"],
          ["net.sourceforge.htmlunit:js:3.0-SNAPSHOT"]
  )

}`

Ben1980 commented 7 years ago

This is the gradle dependencie tree:

compile - Dependencies for source set 'main' (deprecated, use 'implementation ' instead). +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot:1.5.8.RELEASE | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | --- org.springframework:spring-context:4.3.12.RELEASE | | | +--- org.springframework:spring-aop:4.3.12.RELEASE | | | | +--- org.springframework:spring-beans:4.3.12.RELEASE | | | | | --- org.springframework:spring-core:4.3.12.RELEASE | | | | --- org.springframework:spring-core:4.3.12.RELEASE | | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | --- org.springframework:spring-expression:4.3.12.RELEASE | | | --- org.springframework:spring-core:4.3.12.RELEASE | | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE | | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | | +--- org.springframework.boot:spring-boot-starter-logging:1.5.8.RELEASE | | | +--- ch.qos.logback:logback-classic:1.1.11 | | | | +--- ch.qos.logback:logback-core:1.1.11 | | | | --- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | | +--- org.slf4j:jcl-over-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | +--- org.slf4j:jul-to-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:log4j-over-slf4j:1.7.25 | | | --- org.slf4j:slf4j-api:1.7.25 | | +--- org.springframework:spring-core:4.3.12.RELEASE | | --- org.yaml:snakeyaml:1.17 | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.8.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 | | | --- org.apache.tomcat:tomcat-annotations-api:8.5.23 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 () | +--- org.hibernate:hibernate-validator:5.3.5.Final | | +--- javax.validation:validation-api:1.1.0.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | --- com.fasterxml:classmate:1.3.1 -> 1.3.4 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.10 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.10 | +--- org.springframework:spring-web:4.3.12.RELEASE | | +--- org.springframework:spring-aop:4.3.12.RELEASE () | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | +--- org.springframework:spring-context:4.3.12.RELEASE () | | --- org.springframework:spring-core:4.3.12.RELEASE | --- org.springframework:spring-webmvc:4.3.12.RELEASE | +--- org.springframework:spring-aop:4.3.12.RELEASE () | +--- org.springframework:spring-beans:4.3.12.RELEASE () | +--- org.springframework:spring-context:4.3.12.RELEASE () | +--- org.springframework:spring-core:4.3.12.RELEASE | +--- org.springframework:spring-expression:4.3.12.RELEASE () | --- org.springframework:spring-web:4.3.12.RELEASE () +--- org.springframework.boot:spring-boot-starter-jetty: -> 1.5.8.RELEASE | +--- org.eclipse.jetty:jetty-servlets:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-continuation:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-security:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-server:9.4.7.v20170914 | | +--- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 | | +--- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-client:9.4.7.v20170914 | | | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | --- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-servlet:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | --- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:javax-websocket-server-impl:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-annotations:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-plus:9.4.7.v20170914 | | | | --- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- javax.annotation:javax.annotation-api:1.2 | | | +--- org.ow2.asm:asm:5.1 | | | --- org.ow2.asm:asm-commons:5.1 | | | --- org.ow2.asm:asm-tree:5.1 | | | --- org.ow2.asm:asm:5.1 | | +--- org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.7.v20170914 | | | --- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 () | | --- javax.websocket:javax.websocket-api:1.0 | --- org.mortbay.jasper:apache-el:8.0.33 --- org.springframework.boot:spring-boot-starter-thymeleaf: -> 1.5.8.RELEASE +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE () +--- org.springframework.boot:spring-boot-starter-web:1.5.8.RELEASE () +--- org.thymeleaf:thymeleaf-spring4:2.1.5.RELEASE | +--- org.thymeleaf:thymeleaf:2.1.5.RELEASE | | +--- ognl:ognl:3.0.8 | | +--- org.javassist:javassist:3.16.1-GA -> 3.21.0-GA | | +--- org.unbescape:unbescape:1.1.0.RELEASE | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 --- nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:1.4.0 +--- org.codehaus.groovy:groovy:2.4.3 -> 2.4.12 --- org.thymeleaf:thymeleaf:2.1.4.RELEASE -> 2.1.5.RELEASE (*)

compileClasspath - Compile classpath for source set 'main'. +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot:1.5.8.RELEASE | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | --- org.springframework:spring-context:4.3.12.RELEASE | | | +--- org.springframework:spring-aop:4.3.12.RELEASE | | | | +--- org.springframework:spring-beans:4.3.12.RELEASE | | | | | --- org.springframework:spring-core:4.3.12.RELEASE | | | | --- org.springframework:spring-core:4.3.12.RELEASE | | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | --- org.springframework:spring-expression:4.3.12.RELEASE | | | --- org.springframework:spring-core:4.3.12.RELEASE | | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE | | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | | +--- org.springframework.boot:spring-boot-starter-logging:1.5.8.RELEASE | | | +--- ch.qos.logback:logback-classic:1.1.11 | | | | +--- ch.qos.logback:logback-core:1.1.11 | | | | --- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | | +--- org.slf4j:jcl-over-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | +--- org.slf4j:jul-to-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:log4j-over-slf4j:1.7.25 | | | --- org.slf4j:slf4j-api:1.7.25 | | +--- org.springframework:spring-core:4.3.12.RELEASE | | --- org.yaml:snakeyaml:1.17 | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.8.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 | | | --- org.apache.tomcat:tomcat-annotations-api:8.5.23 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 () | +--- org.hibernate:hibernate-validator:5.3.5.Final | | +--- javax.validation:validation-api:1.1.0.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | --- com.fasterxml:classmate:1.3.1 -> 1.3.4 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.10 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.10 | +--- org.springframework:spring-web:4.3.12.RELEASE | | +--- org.springframework:spring-aop:4.3.12.RELEASE () | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | +--- org.springframework:spring-context:4.3.12.RELEASE () | | --- org.springframework:spring-core:4.3.12.RELEASE | --- org.springframework:spring-webmvc:4.3.12.RELEASE | +--- org.springframework:spring-aop:4.3.12.RELEASE () | +--- org.springframework:spring-beans:4.3.12.RELEASE () | +--- org.springframework:spring-context:4.3.12.RELEASE () | +--- org.springframework:spring-core:4.3.12.RELEASE | +--- org.springframework:spring-expression:4.3.12.RELEASE () | --- org.springframework:spring-web:4.3.12.RELEASE () +--- org.springframework.boot:spring-boot-starter-jetty: -> 1.5.8.RELEASE | +--- org.eclipse.jetty:jetty-servlets:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-continuation:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-security:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-server:9.4.7.v20170914 | | +--- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 | | +--- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-client:9.4.7.v20170914 | | | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | --- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-servlet:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | --- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:javax-websocket-server-impl:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-annotations:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-plus:9.4.7.v20170914 | | | | --- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- javax.annotation:javax.annotation-api:1.2 | | | +--- org.ow2.asm:asm:5.1 | | | --- org.ow2.asm:asm-commons:5.1 | | | --- org.ow2.asm:asm-tree:5.1 | | | --- org.ow2.asm:asm:5.1 | | +--- org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.7.v20170914 | | | --- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 () | | --- javax.websocket:javax.websocket-api:1.0 | --- org.mortbay.jasper:apache-el:8.0.33 --- org.springframework.boot:spring-boot-starter-thymeleaf: -> 1.5.8.RELEASE +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE () +--- org.springframework.boot:spring-boot-starter-web:1.5.8.RELEASE () +--- org.thymeleaf:thymeleaf-spring4:2.1.5.RELEASE | +--- org.thymeleaf:thymeleaf:2.1.5.RELEASE | | +--- ognl:ognl:3.0.8 | | +--- org.javassist:javassist:3.16.1-GA -> 3.21.0-GA | | +--- org.unbescape:unbescape:1.1.0.RELEASE | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 --- nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:1.4.0 +--- org.codehaus.groovy:groovy:2.4.3 -> 2.4.12 --- org.thymeleaf:thymeleaf:2.1.4.RELEASE -> 2.1.5.RELEASE (*)

compileOnly - Compile only dependencies for source set 'main'. No dependencies

default - Configuration for default artifacts. +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot:1.5.8.RELEASE | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | --- org.springframework:spring-context:4.3.12.RELEASE | | | +--- org.springframework:spring-aop:4.3.12.RELEASE | | | | +--- org.springframework:spring-beans:4.3.12.RELEASE | | | | | --- org.springframework:spring-core:4.3.12.RELEASE | | | | --- org.springframework:spring-core:4.3.12.RELEASE | | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | --- org.springframework:spring-expression:4.3.12.RELEASE | | | --- org.springframework:spring-core:4.3.12.RELEASE | | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE | | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | | +--- org.springframework.boot:spring-boot-starter-logging:1.5.8.RELEASE | | | +--- ch.qos.logback:logback-classic:1.1.11 | | | | +--- ch.qos.logback:logback-core:1.1.11 | | | | --- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | | +--- org.slf4j:jcl-over-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | +--- org.slf4j:jul-to-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:log4j-over-slf4j:1.7.25 | | | --- org.slf4j:slf4j-api:1.7.25 | | +--- org.springframework:spring-core:4.3.12.RELEASE | | --- org.yaml:snakeyaml:1.17 | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.8.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 | | | --- org.apache.tomcat:tomcat-annotations-api:8.5.23 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 () | +--- org.hibernate:hibernate-validator:5.3.5.Final | | +--- javax.validation:validation-api:1.1.0.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | --- com.fasterxml:classmate:1.3.1 -> 1.3.4 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.10 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.10 | +--- org.springframework:spring-web:4.3.12.RELEASE | | +--- org.springframework:spring-aop:4.3.12.RELEASE () | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | +--- org.springframework:spring-context:4.3.12.RELEASE () | | --- org.springframework:spring-core:4.3.12.RELEASE | --- org.springframework:spring-webmvc:4.3.12.RELEASE | +--- org.springframework:spring-aop:4.3.12.RELEASE () | +--- org.springframework:spring-beans:4.3.12.RELEASE () | +--- org.springframework:spring-context:4.3.12.RELEASE () | +--- org.springframework:spring-core:4.3.12.RELEASE | +--- org.springframework:spring-expression:4.3.12.RELEASE () | --- org.springframework:spring-web:4.3.12.RELEASE () +--- org.springframework.boot:spring-boot-starter-jetty: -> 1.5.8.RELEASE | +--- org.eclipse.jetty:jetty-servlets:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-continuation:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-security:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-server:9.4.7.v20170914 | | +--- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 | | +--- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-client:9.4.7.v20170914 | | | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | --- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-servlet:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | --- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:javax-websocket-server-impl:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-annotations:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-plus:9.4.7.v20170914 | | | | --- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- javax.annotation:javax.annotation-api:1.2 | | | +--- org.ow2.asm:asm:5.1 | | | --- org.ow2.asm:asm-commons:5.1 | | | --- org.ow2.asm:asm-tree:5.1 | | | --- org.ow2.asm:asm:5.1 | | +--- org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.7.v20170914 | | | --- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 () | | --- javax.websocket:javax.websocket-api:1.0 | --- org.mortbay.jasper:apache-el:8.0.33 --- org.springframework.boot:spring-boot-starter-thymeleaf: -> 1.5.8.RELEASE +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE () +--- org.springframework.boot:spring-boot-starter-web:1.5.8.RELEASE () +--- org.thymeleaf:thymeleaf-spring4:2.1.5.RELEASE | +--- org.thymeleaf:thymeleaf:2.1.5.RELEASE | | +--- ognl:ognl:3.0.8 | | +--- org.javassist:javassist:3.16.1-GA -> 3.21.0-GA | | +--- org.unbescape:unbescape:1.1.0.RELEASE | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 --- nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:1.4.0 +--- org.codehaus.groovy:groovy:2.4.3 -> 2.4.12 --- org.thymeleaf:thymeleaf:2.1.4.RELEASE -> 2.1.5.RELEASE (*)

implementation - Implementation only dependencies for source set 'main'. (n) No dependencies

runtime - Runtime dependencies for source set 'main' (deprecated, use 'runtimeOnly ' instead). +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot:1.5.8.RELEASE | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | --- org.springframework:spring-context:4.3.12.RELEASE | | | +--- org.springframework:spring-aop:4.3.12.RELEASE | | | | +--- org.springframework:spring-beans:4.3.12.RELEASE | | | | | --- org.springframework:spring-core:4.3.12.RELEASE | | | | --- org.springframework:spring-core:4.3.12.RELEASE | | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | --- org.springframework:spring-expression:4.3.12.RELEASE | | | --- org.springframework:spring-core:4.3.12.RELEASE | | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE | | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | | +--- org.springframework.boot:spring-boot-starter-logging:1.5.8.RELEASE | | | +--- ch.qos.logback:logback-classic:1.1.11 | | | | +--- ch.qos.logback:logback-core:1.1.11 | | | | --- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | | +--- org.slf4j:jcl-over-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | +--- org.slf4j:jul-to-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:log4j-over-slf4j:1.7.25 | | | --- org.slf4j:slf4j-api:1.7.25 | | +--- org.springframework:spring-core:4.3.12.RELEASE | | --- org.yaml:snakeyaml:1.17 | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.8.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 | | | --- org.apache.tomcat:tomcat-annotations-api:8.5.23 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 () | +--- org.hibernate:hibernate-validator:5.3.5.Final | | +--- javax.validation:validation-api:1.1.0.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | --- com.fasterxml:classmate:1.3.1 -> 1.3.4 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.10 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.10 | +--- org.springframework:spring-web:4.3.12.RELEASE | | +--- org.springframework:spring-aop:4.3.12.RELEASE () | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | +--- org.springframework:spring-context:4.3.12.RELEASE () | | --- org.springframework:spring-core:4.3.12.RELEASE | --- org.springframework:spring-webmvc:4.3.12.RELEASE | +--- org.springframework:spring-aop:4.3.12.RELEASE () | +--- org.springframework:spring-beans:4.3.12.RELEASE () | +--- org.springframework:spring-context:4.3.12.RELEASE () | +--- org.springframework:spring-core:4.3.12.RELEASE | +--- org.springframework:spring-expression:4.3.12.RELEASE () | --- org.springframework:spring-web:4.3.12.RELEASE () +--- org.springframework.boot:spring-boot-starter-jetty: -> 1.5.8.RELEASE | +--- org.eclipse.jetty:jetty-servlets:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-continuation:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-security:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-server:9.4.7.v20170914 | | +--- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 | | +--- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-client:9.4.7.v20170914 | | | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | --- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-servlet:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | --- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:javax-websocket-server-impl:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-annotations:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-plus:9.4.7.v20170914 | | | | --- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- javax.annotation:javax.annotation-api:1.2 | | | +--- org.ow2.asm:asm:5.1 | | | --- org.ow2.asm:asm-commons:5.1 | | | --- org.ow2.asm:asm-tree:5.1 | | | --- org.ow2.asm:asm:5.1 | | +--- org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.7.v20170914 | | | --- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 () | | --- javax.websocket:javax.websocket-api:1.0 | --- org.mortbay.jasper:apache-el:8.0.33 --- org.springframework.boot:spring-boot-starter-thymeleaf: -> 1.5.8.RELEASE +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE () +--- org.springframework.boot:spring-boot-starter-web:1.5.8.RELEASE () +--- org.thymeleaf:thymeleaf-spring4:2.1.5.RELEASE | +--- org.thymeleaf:thymeleaf:2.1.5.RELEASE | | +--- ognl:ognl:3.0.8 | | +--- org.javassist:javassist:3.16.1-GA -> 3.21.0-GA | | +--- org.unbescape:unbescape:1.1.0.RELEASE | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 --- nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:1.4.0 +--- org.codehaus.groovy:groovy:2.4.3 -> 2.4.12 --- org.thymeleaf:thymeleaf:2.1.4.RELEASE -> 2.1.5.RELEASE (*)

runtimeClasspath - Runtime classpath of source set 'main'. +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot:1.5.8.RELEASE | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | --- org.springframework:spring-context:4.3.12.RELEASE | | | +--- org.springframework:spring-aop:4.3.12.RELEASE | | | | +--- org.springframework:spring-beans:4.3.12.RELEASE | | | | | --- org.springframework:spring-core:4.3.12.RELEASE | | | | --- org.springframework:spring-core:4.3.12.RELEASE | | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | --- org.springframework:spring-expression:4.3.12.RELEASE | | | --- org.springframework:spring-core:4.3.12.RELEASE | | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE | | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | | +--- org.springframework.boot:spring-boot-starter-logging:1.5.8.RELEASE | | | +--- ch.qos.logback:logback-classic:1.1.11 | | | | +--- ch.qos.logback:logback-core:1.1.11 | | | | --- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | | +--- org.slf4j:jcl-over-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | +--- org.slf4j:jul-to-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:log4j-over-slf4j:1.7.25 | | | --- org.slf4j:slf4j-api:1.7.25 | | +--- org.springframework:spring-core:4.3.12.RELEASE | | --- org.yaml:snakeyaml:1.17 | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.8.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 | | | --- org.apache.tomcat:tomcat-annotations-api:8.5.23 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 () | +--- org.hibernate:hibernate-validator:5.3.5.Final | | +--- javax.validation:validation-api:1.1.0.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | --- com.fasterxml:classmate:1.3.1 -> 1.3.4 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.10 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.10 | +--- org.springframework:spring-web:4.3.12.RELEASE | | +--- org.springframework:spring-aop:4.3.12.RELEASE () | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | +--- org.springframework:spring-context:4.3.12.RELEASE () | | --- org.springframework:spring-core:4.3.12.RELEASE | --- org.springframework:spring-webmvc:4.3.12.RELEASE | +--- org.springframework:spring-aop:4.3.12.RELEASE () | +--- org.springframework:spring-beans:4.3.12.RELEASE () | +--- org.springframework:spring-context:4.3.12.RELEASE () | +--- org.springframework:spring-core:4.3.12.RELEASE | +--- org.springframework:spring-expression:4.3.12.RELEASE () | --- org.springframework:spring-web:4.3.12.RELEASE () +--- org.springframework.boot:spring-boot-starter-jetty: -> 1.5.8.RELEASE | +--- org.eclipse.jetty:jetty-servlets:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-continuation:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-security:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-server:9.4.7.v20170914 | | +--- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 | | +--- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-client:9.4.7.v20170914 | | | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | --- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-servlet:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | --- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:javax-websocket-server-impl:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-annotations:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-plus:9.4.7.v20170914 | | | | --- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- javax.annotation:javax.annotation-api:1.2 | | | +--- org.ow2.asm:asm:5.1 | | | --- org.ow2.asm:asm-commons:5.1 | | | --- org.ow2.asm:asm-tree:5.1 | | | --- org.ow2.asm:asm:5.1 | | +--- org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.7.v20170914 | | | --- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 () | | --- javax.websocket:javax.websocket-api:1.0 | --- org.mortbay.jasper:apache-el:8.0.33 --- org.springframework.boot:spring-boot-starter-thymeleaf: -> 1.5.8.RELEASE +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE () +--- org.springframework.boot:spring-boot-starter-web:1.5.8.RELEASE () +--- org.thymeleaf:thymeleaf-spring4:2.1.5.RELEASE | +--- org.thymeleaf:thymeleaf:2.1.5.RELEASE | | +--- ognl:ognl:3.0.8 | | +--- org.javassist:javassist:3.16.1-GA -> 3.21.0-GA | | +--- org.unbescape:unbescape:1.1.0.RELEASE | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 --- nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:1.4.0 +--- org.codehaus.groovy:groovy:2.4.3 -> 2.4.12 --- org.thymeleaf:thymeleaf:2.1.4.RELEASE -> 2.1.5.RELEASE (*)

runtimeElements - Elements of runtime for main. (n) No dependencies

runtimeOnly - Runtime only dependencies for source set 'main'. (n) No dependencies

testCompile - Dependencies for source set 'test' (deprecated, use 'testImplementation ' instead). +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot:1.5.8.RELEASE | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | | --- commons-logging:commons-logging:1.2 | | | --- org.springframework:spring-context:4.3.12.RELEASE | | | +--- org.springframework:spring-aop:4.3.12.RELEASE | | | | +--- org.springframework:spring-beans:4.3.12.RELEASE | | | | | --- org.springframework:spring-core:4.3.12.RELEASE () | | | | --- org.springframework:spring-core:4.3.12.RELEASE () | | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | | +--- org.springframework:spring-core:4.3.12.RELEASE () | | | --- org.springframework:spring-expression:4.3.12.RELEASE | | | --- org.springframework:spring-core:4.3.12.RELEASE () | | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE | | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | | +--- org.springframework.boot:spring-boot-starter-logging:1.5.8.RELEASE | | | +--- ch.qos.logback:logback-classic:1.1.11 | | | | +--- ch.qos.logback:logback-core:1.1.11 | | | | --- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | | +--- org.slf4j:jcl-over-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | +--- org.slf4j:jul-to-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:log4j-over-slf4j:1.7.25 | | | --- org.slf4j:slf4j-api:1.7.25 | | +--- org.springframework:spring-core:4.3.12.RELEASE () | | --- org.yaml:snakeyaml:1.17 | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.8.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 | | | --- org.apache.tomcat:tomcat-annotations-api:8.5.23 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 () | +--- org.hibernate:hibernate-validator:5.3.5.Final | | +--- javax.validation:validation-api:1.1.0.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | --- com.fasterxml:classmate:1.3.1 -> 1.3.4 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.10 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.10 | +--- org.springframework:spring-web:4.3.12.RELEASE | | +--- org.springframework:spring-aop:4.3.12.RELEASE () | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | +--- org.springframework:spring-context:4.3.12.RELEASE () | | --- org.springframework:spring-core:4.3.12.RELEASE () | --- org.springframework:spring-webmvc:4.3.12.RELEASE | +--- org.springframework:spring-aop:4.3.12.RELEASE () | +--- org.springframework:spring-beans:4.3.12.RELEASE () | +--- org.springframework:spring-context:4.3.12.RELEASE () | +--- org.springframework:spring-core:4.3.12.RELEASE () | +--- org.springframework:spring-expression:4.3.12.RELEASE () | --- org.springframework:spring-web:4.3.12.RELEASE () +--- org.springframework.boot:spring-boot-starter-jetty: -> 1.5.8.RELEASE | +--- org.eclipse.jetty:jetty-servlets:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-continuation:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-security:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-server:9.4.7.v20170914 | | +--- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 | | +--- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-client:9.4.7.v20170914 | | | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | --- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-servlet:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | --- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:javax-websocket-server-impl:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-annotations:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-plus:9.4.7.v20170914 | | | | --- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- javax.annotation:javax.annotation-api:1.2 | | | +--- org.ow2.asm:asm:5.1 | | | --- org.ow2.asm:asm-commons:5.1 | | | --- org.ow2.asm:asm-tree:5.1 | | | --- org.ow2.asm:asm:5.1 | | +--- org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.7.v20170914 | | | --- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 () | | --- javax.websocket:javax.websocket-api:1.0 | --- org.mortbay.jasper:apache-el:8.0.33 +--- org.springframework.boot:spring-boot-starter-thymeleaf: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE () | +--- org.springframework.boot:spring-boot-starter-web:1.5.8.RELEASE () | +--- org.thymeleaf:thymeleaf-spring4:2.1.5.RELEASE | | +--- org.thymeleaf:thymeleaf:2.1.5.RELEASE | | | +--- ognl:ognl:3.0.8 | | | +--- org.javassist:javassist:3.16.1-GA -> 3.21.0-GA | | | +--- org.unbescape:unbescape:1.1.0.RELEASE | | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | --- nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:1.4.0 | +--- org.codehaus.groovy:groovy:2.4.3 -> 2.4.12 | --- org.thymeleaf:thymeleaf:2.1.4.RELEASE -> 2.1.5.RELEASE () +--- org.springframework.boot:spring-boot-starter-test: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-test:1.5.8.RELEASE | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | +--- org.springframework.boot:spring-boot-test-autoconfigure:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot-test:1.5.8.RELEASE () | | --- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE () | +--- com.jayway.jsonpath:json-path:2.2.0 | | +--- net.minidev:json-smart:2.2.1 | | | --- net.minidev:accessors-smart:1.1 | | | --- org.ow2.asm:asm:5.0.3 -> 5.1 | | --- org.slf4j:slf4j-api:1.7.16 -> 1.7.25 | +--- junit:junit:4.12 | | --- org.hamcrest:hamcrest-core:1.3 | +--- org.assertj:assertj-core:2.6.0 | +--- org.mockito:mockito-core:1.10.19 | | +--- org.hamcrest:hamcrest-core:1.1 -> 1.3 | | --- org.objenesis:objenesis:2.1 | +--- org.hamcrest:hamcrest-core:1.3 | +--- org.hamcrest:hamcrest-library:1.3 | | --- org.hamcrest:hamcrest-core:1.3 | +--- org.skyscreamer:jsonassert:1.4.0 | | --- com.vaadin.external.google:android-json:0.0.20131108.vaadin1 | +--- org.springframework:spring-core:4.3.12.RELEASE () | --- org.springframework:spring-test:4.3.12.RELEASE | --- org.springframework:spring-core:4.3.12.RELEASE () +--- org.seleniumhq.selenium:selenium-api:3.6.0 +--- org.seleniumhq.selenium:selenium-java:3.6.0 | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | +--- org.seleniumhq.selenium:selenium-chrome-driver:3.6.0 -> 2.53.1 | | --- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 | | +--- cglib:cglib-nodep:2.1_3 | | +--- com.google.code.gson:gson:2.3.1 -> 2.8.2 | | +--- org.seleniumhq.selenium:selenium-api:2.53.1 -> 3.6.0 | | +--- org.apache.httpcomponents:httpclient:4.5.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | | | +--- commons-logging:commons-logging:1.2 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | +--- com.google.guava:guava:19.0 -> 23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | +--- com.google.errorprone:error_prone_annotations:2.0.18 | | | +--- com.google.j2objc:j2objc-annotations:1.1 | | | --- org.codehaus.mojo:animal-sniffer-annotations:1.14 | | +--- org.apache.commons:commons-exec:1.3 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna:4.2.2 | +--- org.seleniumhq.selenium:selenium-edge-driver:3.6.0 | | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | | +--- org.seleniumhq.selenium:selenium-remote-driver:3.6.0 -> 2.53.1 () | | +--- net.bytebuddy:byte-buddy:1.7.5 | | +--- org.apache.commons:commons-exec:1.3 | | +--- commons-codec:commons-codec:1.10 | | +--- commons-logging:commons-logging:1.2 | | +--- com.google.code.gson:gson:2.8.0 -> 2.8.2 | | +--- com.google.guava:guava:23.0 () | | +--- org.apache.httpcomponents:httpclient:4.5.3 () | | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () | +--- org.seleniumhq.selenium:selenium-firefox-driver:3.6.0 -> 2.53.1 | | +--- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | | +--- commons-io:commons-io:2.4 | | --- org.apache.commons:commons-exec:1.3 | +--- org.seleniumhq.selenium:selenium-ie-driver:3.6.0 -> 2.53.1 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | +--- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () | | --- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | +--- org.seleniumhq.selenium:selenium-opera-driver:3.6.0 | | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | | +--- org.seleniumhq.selenium:selenium-remote-driver:3.6.0 -> 2.53.1 () | | +--- net.bytebuddy:byte-buddy:1.7.5 | | +--- org.apache.commons:commons-exec:1.3 | | +--- commons-codec:commons-codec:1.10 | | +--- commons-logging:commons-logging:1.2 | | +--- com.google.code.gson:gson:2.8.0 -> 2.8.2 | | +--- com.google.guava:guava:23.0 () | | +--- org.apache.httpcomponents:httpclient:4.5.3 () | | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () | +--- org.seleniumhq.selenium:selenium-remote-driver:3.6.0 -> 2.53.1 () | +--- org.seleniumhq.selenium:selenium-safari-driver:3.6.0 -> 2.53.1 | | +--- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | | --- io.netty:netty:3.5.7.Final | +--- org.seleniumhq.selenium:selenium-support:3.6.0 -> 2.53.1 | | --- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | +--- net.bytebuddy:byte-buddy:1.7.5 | +--- org.apache.commons:commons-exec:1.3 | +--- commons-codec:commons-codec:1.10 | +--- commons-logging:commons-logging:1.2 | +--- com.google.code.gson:gson:2.8.0 -> 2.8.2 | +--- com.google.guava:guava:23.0 () | +--- org.apache.httpcomponents:httpclient:4.5.3 () | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () +--- org.seleniumhq.selenium:htmlunit-driver:2.28-SNAPSHOT | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | +--- org.seleniumhq.selenium:selenium-support:3.6.0 -> 2.53.1 () | --- net.sourceforge.htmlunit:htmlunit:2.28-SNAPSHOT -> 2.21 | +--- xalan:xalan:2.7.2 | | --- xalan:serializer:2.7.2 | +--- org.apache.commons:commons-lang3:3.4 | +--- org.apache.httpcomponents:httpclient:4.5.2 -> 4.5.3 () | +--- org.apache.httpcomponents:httpmime:4.5.2 -> 4.5.3 | | --- org.apache.httpcomponents:httpclient:4.5.3 () | +--- net.sourceforge.htmlunit:htmlunit-core-js:2.17 | +--- net.sourceforge.htmlunit:neko-htmlunit:2.21 | | --- xerces:xercesImpl:2.11.0 | | --- xml-apis:xml-apis:1.4.01 | +--- net.sourceforge.cssparser:cssparser:0.9.18 | | --- org.w3c.css:sac:1.3 | +--- commons-io:commons-io:2.4 | +--- commons-logging:commons-logging:1.2 | --- org.eclipse.jetty.websocket:websocket-client:9.2.15.v20160210 -> 9.4.7.v20170914 () --- net.sourceforge.htmlunit:js:3.0-SNAPSHOT --- org.ow2.asm:asm-all:5.1

testCompileClasspath - Compile classpath for source set 'test'. +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot:1.5.8.RELEASE | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | | --- commons-logging:commons-logging:1.2 | | | --- org.springframework:spring-context:4.3.12.RELEASE | | | +--- org.springframework:spring-aop:4.3.12.RELEASE | | | | +--- org.springframework:spring-beans:4.3.12.RELEASE | | | | | --- org.springframework:spring-core:4.3.12.RELEASE () | | | | --- org.springframework:spring-core:4.3.12.RELEASE () | | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | | +--- org.springframework:spring-core:4.3.12.RELEASE () | | | --- org.springframework:spring-expression:4.3.12.RELEASE | | | --- org.springframework:spring-core:4.3.12.RELEASE () | | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE | | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | | +--- org.springframework.boot:spring-boot-starter-logging:1.5.8.RELEASE | | | +--- ch.qos.logback:logback-classic:1.1.11 | | | | +--- ch.qos.logback:logback-core:1.1.11 | | | | --- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | | +--- org.slf4j:jcl-over-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | +--- org.slf4j:jul-to-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:log4j-over-slf4j:1.7.25 | | | --- org.slf4j:slf4j-api:1.7.25 | | +--- org.springframework:spring-core:4.3.12.RELEASE () | | --- org.yaml:snakeyaml:1.17 | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.8.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 | | | --- org.apache.tomcat:tomcat-annotations-api:8.5.23 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 () | +--- org.hibernate:hibernate-validator:5.3.5.Final | | +--- javax.validation:validation-api:1.1.0.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | --- com.fasterxml:classmate:1.3.1 -> 1.3.4 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.10 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.10 | +--- org.springframework:spring-web:4.3.12.RELEASE | | +--- org.springframework:spring-aop:4.3.12.RELEASE () | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | +--- org.springframework:spring-context:4.3.12.RELEASE () | | --- org.springframework:spring-core:4.3.12.RELEASE () | --- org.springframework:spring-webmvc:4.3.12.RELEASE | +--- org.springframework:spring-aop:4.3.12.RELEASE () | +--- org.springframework:spring-beans:4.3.12.RELEASE () | +--- org.springframework:spring-context:4.3.12.RELEASE () | +--- org.springframework:spring-core:4.3.12.RELEASE () | +--- org.springframework:spring-expression:4.3.12.RELEASE () | --- org.springframework:spring-web:4.3.12.RELEASE () +--- org.springframework.boot:spring-boot-starter-jetty: -> 1.5.8.RELEASE | +--- org.eclipse.jetty:jetty-servlets:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-continuation:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-security:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-server:9.4.7.v20170914 | | +--- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 | | +--- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-client:9.4.7.v20170914 | | | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | --- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-servlet:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | --- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:javax-websocket-server-impl:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-annotations:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-plus:9.4.7.v20170914 | | | | --- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- javax.annotation:javax.annotation-api:1.2 | | | +--- org.ow2.asm:asm:5.1 | | | --- org.ow2.asm:asm-commons:5.1 | | | --- org.ow2.asm:asm-tree:5.1 | | | --- org.ow2.asm:asm:5.1 | | +--- org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.7.v20170914 | | | --- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 () | | --- javax.websocket:javax.websocket-api:1.0 | --- org.mortbay.jasper:apache-el:8.0.33 +--- org.springframework.boot:spring-boot-starter-thymeleaf: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE () | +--- org.springframework.boot:spring-boot-starter-web:1.5.8.RELEASE () | +--- org.thymeleaf:thymeleaf-spring4:2.1.5.RELEASE | | +--- org.thymeleaf:thymeleaf:2.1.5.RELEASE | | | +--- ognl:ognl:3.0.8 | | | +--- org.javassist:javassist:3.16.1-GA -> 3.21.0-GA | | | +--- org.unbescape:unbescape:1.1.0.RELEASE | | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | --- nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:1.4.0 | +--- org.codehaus.groovy:groovy:2.4.3 -> 2.4.12 | --- org.thymeleaf:thymeleaf:2.1.4.RELEASE -> 2.1.5.RELEASE () +--- org.springframework.boot:spring-boot-starter-test: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-test:1.5.8.RELEASE | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | +--- org.springframework.boot:spring-boot-test-autoconfigure:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot-test:1.5.8.RELEASE () | | --- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE () | +--- com.jayway.jsonpath:json-path:2.2.0 | | +--- net.minidev:json-smart:2.2.1 | | | --- net.minidev:accessors-smart:1.1 | | | --- org.ow2.asm:asm:5.0.3 -> 5.1 | | --- org.slf4j:slf4j-api:1.7.16 -> 1.7.25 | +--- junit:junit:4.12 | | --- org.hamcrest:hamcrest-core:1.3 | +--- org.assertj:assertj-core:2.6.0 | +--- org.mockito:mockito-core:1.10.19 | | +--- org.hamcrest:hamcrest-core:1.1 -> 1.3 | | --- org.objenesis:objenesis:2.1 | +--- org.hamcrest:hamcrest-core:1.3 | +--- org.hamcrest:hamcrest-library:1.3 | | --- org.hamcrest:hamcrest-core:1.3 | +--- org.skyscreamer:jsonassert:1.4.0 | | --- com.vaadin.external.google:android-json:0.0.20131108.vaadin1 | +--- org.springframework:spring-core:4.3.12.RELEASE () | --- org.springframework:spring-test:4.3.12.RELEASE | --- org.springframework:spring-core:4.3.12.RELEASE () +--- org.seleniumhq.selenium:selenium-api:3.6.0 +--- org.seleniumhq.selenium:selenium-java:3.6.0 | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | +--- org.seleniumhq.selenium:selenium-chrome-driver:3.6.0 -> 2.53.1 | | --- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 | | +--- cglib:cglib-nodep:2.1_3 | | +--- com.google.code.gson:gson:2.3.1 -> 2.8.2 | | +--- org.seleniumhq.selenium:selenium-api:2.53.1 -> 3.6.0 | | +--- org.apache.httpcomponents:httpclient:4.5.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | | | +--- commons-logging:commons-logging:1.2 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | +--- com.google.guava:guava:19.0 -> 23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | +--- com.google.errorprone:error_prone_annotations:2.0.18 | | | +--- com.google.j2objc:j2objc-annotations:1.1 | | | --- org.codehaus.mojo:animal-sniffer-annotations:1.14 | | +--- org.apache.commons:commons-exec:1.3 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna:4.2.2 | +--- org.seleniumhq.selenium:selenium-edge-driver:3.6.0 | | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | | +--- org.seleniumhq.selenium:selenium-remote-driver:3.6.0 -> 2.53.1 () | | +--- net.bytebuddy:byte-buddy:1.7.5 | | +--- org.apache.commons:commons-exec:1.3 | | +--- commons-codec:commons-codec:1.10 | | +--- commons-logging:commons-logging:1.2 | | +--- com.google.code.gson:gson:2.8.0 -> 2.8.2 | | +--- com.google.guava:guava:23.0 () | | +--- org.apache.httpcomponents:httpclient:4.5.3 () | | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () | +--- org.seleniumhq.selenium:selenium-firefox-driver:3.6.0 -> 2.53.1 | | +--- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | | +--- commons-io:commons-io:2.4 | | --- org.apache.commons:commons-exec:1.3 | +--- org.seleniumhq.selenium:selenium-ie-driver:3.6.0 -> 2.53.1 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | +--- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () | | --- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | +--- org.seleniumhq.selenium:selenium-opera-driver:3.6.0 | | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | | +--- org.seleniumhq.selenium:selenium-remote-driver:3.6.0 -> 2.53.1 () | | +--- net.bytebuddy:byte-buddy:1.7.5 | | +--- org.apache.commons:commons-exec:1.3 | | +--- commons-codec:commons-codec:1.10 | | +--- commons-logging:commons-logging:1.2 | | +--- com.google.code.gson:gson:2.8.0 -> 2.8.2 | | +--- com.google.guava:guava:23.0 () | | +--- org.apache.httpcomponents:httpclient:4.5.3 () | | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () | +--- org.seleniumhq.selenium:selenium-remote-driver:3.6.0 -> 2.53.1 () | +--- org.seleniumhq.selenium:selenium-safari-driver:3.6.0 -> 2.53.1 | | +--- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | | --- io.netty:netty:3.5.7.Final | +--- org.seleniumhq.selenium:selenium-support:3.6.0 -> 2.53.1 | | --- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | +--- net.bytebuddy:byte-buddy:1.7.5 | +--- org.apache.commons:commons-exec:1.3 | +--- commons-codec:commons-codec:1.10 | +--- commons-logging:commons-logging:1.2 | +--- com.google.code.gson:gson:2.8.0 -> 2.8.2 | +--- com.google.guava:guava:23.0 () | +--- org.apache.httpcomponents:httpclient:4.5.3 () | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () +--- org.seleniumhq.selenium:htmlunit-driver:2.28-SNAPSHOT | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | +--- org.seleniumhq.selenium:selenium-support:3.6.0 -> 2.53.1 () | --- net.sourceforge.htmlunit:htmlunit:2.28-SNAPSHOT -> 2.21 | +--- xalan:xalan:2.7.2 | | --- xalan:serializer:2.7.2 | +--- org.apache.commons:commons-lang3:3.4 | +--- org.apache.httpcomponents:httpclient:4.5.2 -> 4.5.3 () | +--- org.apache.httpcomponents:httpmime:4.5.2 -> 4.5.3 | | --- org.apache.httpcomponents:httpclient:4.5.3 () | +--- net.sourceforge.htmlunit:htmlunit-core-js:2.17 | +--- net.sourceforge.htmlunit:neko-htmlunit:2.21 | | --- xerces:xercesImpl:2.11.0 | | --- xml-apis:xml-apis:1.4.01 | +--- net.sourceforge.cssparser:cssparser:0.9.18 | | --- org.w3c.css:sac:1.3 | +--- commons-io:commons-io:2.4 | +--- commons-logging:commons-logging:1.2 | --- org.eclipse.jetty.websocket:websocket-client:9.2.15.v20160210 -> 9.4.7.v20170914 () --- net.sourceforge.htmlunit:js:3.0-SNAPSHOT --- org.ow2.asm:asm-all:5.1

testCompileOnly - Compile only dependencies for source set 'test'. No dependencies

testImplementation - Implementation only dependencies for source set 'test'. (n) No dependencies

testRuntime - Runtime dependencies for source set 'test' (deprecated, use 'testRuntimeOnly ' instead). +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot:1.5.8.RELEASE | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | | --- commons-logging:commons-logging:1.2 | | | --- org.springframework:spring-context:4.3.12.RELEASE | | | +--- org.springframework:spring-aop:4.3.12.RELEASE | | | | +--- org.springframework:spring-beans:4.3.12.RELEASE | | | | | --- org.springframework:spring-core:4.3.12.RELEASE () | | | | --- org.springframework:spring-core:4.3.12.RELEASE () | | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | | +--- org.springframework:spring-core:4.3.12.RELEASE () | | | --- org.springframework:spring-expression:4.3.12.RELEASE | | | --- org.springframework:spring-core:4.3.12.RELEASE () | | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE | | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | | +--- org.springframework.boot:spring-boot-starter-logging:1.5.8.RELEASE | | | +--- ch.qos.logback:logback-classic:1.1.11 | | | | +--- ch.qos.logback:logback-core:1.1.11 | | | | --- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | | +--- org.slf4j:jcl-over-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | +--- org.slf4j:jul-to-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:log4j-over-slf4j:1.7.25 | | | --- org.slf4j:slf4j-api:1.7.25 | | +--- org.springframework:spring-core:4.3.12.RELEASE () | | --- org.yaml:snakeyaml:1.17 | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.8.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 | | | --- org.apache.tomcat:tomcat-annotations-api:8.5.23 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 () | +--- org.hibernate:hibernate-validator:5.3.5.Final | | +--- javax.validation:validation-api:1.1.0.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | --- com.fasterxml:classmate:1.3.1 -> 1.3.4 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.10 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.10 | +--- org.springframework:spring-web:4.3.12.RELEASE | | +--- org.springframework:spring-aop:4.3.12.RELEASE () | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | +--- org.springframework:spring-context:4.3.12.RELEASE () | | --- org.springframework:spring-core:4.3.12.RELEASE () | --- org.springframework:spring-webmvc:4.3.12.RELEASE | +--- org.springframework:spring-aop:4.3.12.RELEASE () | +--- org.springframework:spring-beans:4.3.12.RELEASE () | +--- org.springframework:spring-context:4.3.12.RELEASE () | +--- org.springframework:spring-core:4.3.12.RELEASE () | +--- org.springframework:spring-expression:4.3.12.RELEASE () | --- org.springframework:spring-web:4.3.12.RELEASE () +--- org.springframework.boot:spring-boot-starter-jetty: -> 1.5.8.RELEASE | +--- org.eclipse.jetty:jetty-servlets:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-continuation:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-security:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-server:9.4.7.v20170914 | | +--- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 | | +--- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-client:9.4.7.v20170914 | | | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | --- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-servlet:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | --- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:javax-websocket-server-impl:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-annotations:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-plus:9.4.7.v20170914 | | | | --- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- javax.annotation:javax.annotation-api:1.2 | | | +--- org.ow2.asm:asm:5.1 | | | --- org.ow2.asm:asm-commons:5.1 | | | --- org.ow2.asm:asm-tree:5.1 | | | --- org.ow2.asm:asm:5.1 | | +--- org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.7.v20170914 | | | --- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 () | | --- javax.websocket:javax.websocket-api:1.0 | --- org.mortbay.jasper:apache-el:8.0.33 +--- org.springframework.boot:spring-boot-starter-thymeleaf: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE () | +--- org.springframework.boot:spring-boot-starter-web:1.5.8.RELEASE () | +--- org.thymeleaf:thymeleaf-spring4:2.1.5.RELEASE | | +--- org.thymeleaf:thymeleaf:2.1.5.RELEASE | | | +--- ognl:ognl:3.0.8 | | | +--- org.javassist:javassist:3.16.1-GA -> 3.21.0-GA | | | +--- org.unbescape:unbescape:1.1.0.RELEASE | | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | --- nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:1.4.0 | +--- org.codehaus.groovy:groovy:2.4.3 -> 2.4.12 | --- org.thymeleaf:thymeleaf:2.1.4.RELEASE -> 2.1.5.RELEASE () +--- org.springframework.boot:spring-boot-starter-test: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-test:1.5.8.RELEASE | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | +--- org.springframework.boot:spring-boot-test-autoconfigure:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot-test:1.5.8.RELEASE () | | --- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE () | +--- com.jayway.jsonpath:json-path:2.2.0 | | +--- net.minidev:json-smart:2.2.1 | | | --- net.minidev:accessors-smart:1.1 | | | --- org.ow2.asm:asm:5.0.3 -> 5.1 | | --- org.slf4j:slf4j-api:1.7.16 -> 1.7.25 | +--- junit:junit:4.12 | | --- org.hamcrest:hamcrest-core:1.3 | +--- org.assertj:assertj-core:2.6.0 | +--- org.mockito:mockito-core:1.10.19 | | +--- org.hamcrest:hamcrest-core:1.1 -> 1.3 | | --- org.objenesis:objenesis:2.1 | +--- org.hamcrest:hamcrest-core:1.3 | +--- org.hamcrest:hamcrest-library:1.3 | | --- org.hamcrest:hamcrest-core:1.3 | +--- org.skyscreamer:jsonassert:1.4.0 | | --- com.vaadin.external.google:android-json:0.0.20131108.vaadin1 | +--- org.springframework:spring-core:4.3.12.RELEASE () | --- org.springframework:spring-test:4.3.12.RELEASE | --- org.springframework:spring-core:4.3.12.RELEASE () +--- org.seleniumhq.selenium:selenium-api:3.6.0 +--- org.seleniumhq.selenium:selenium-java:3.6.0 | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | +--- org.seleniumhq.selenium:selenium-chrome-driver:3.6.0 -> 2.53.1 | | --- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 | | +--- cglib:cglib-nodep:2.1_3 | | +--- com.google.code.gson:gson:2.3.1 -> 2.8.2 | | +--- org.seleniumhq.selenium:selenium-api:2.53.1 -> 3.6.0 | | +--- org.apache.httpcomponents:httpclient:4.5.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | | | +--- commons-logging:commons-logging:1.2 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | +--- com.google.guava:guava:19.0 -> 23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | +--- com.google.errorprone:error_prone_annotations:2.0.18 | | | +--- com.google.j2objc:j2objc-annotations:1.1 | | | --- org.codehaus.mojo:animal-sniffer-annotations:1.14 | | +--- org.apache.commons:commons-exec:1.3 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna:4.2.2 | +--- org.seleniumhq.selenium:selenium-edge-driver:3.6.0 | | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | | +--- org.seleniumhq.selenium:selenium-remote-driver:3.6.0 -> 2.53.1 () | | +--- net.bytebuddy:byte-buddy:1.7.5 | | +--- org.apache.commons:commons-exec:1.3 | | +--- commons-codec:commons-codec:1.10 | | +--- commons-logging:commons-logging:1.2 | | +--- com.google.code.gson:gson:2.8.0 -> 2.8.2 | | +--- com.google.guava:guava:23.0 () | | +--- org.apache.httpcomponents:httpclient:4.5.3 () | | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () | +--- org.seleniumhq.selenium:selenium-firefox-driver:3.6.0 -> 2.53.1 | | +--- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | | +--- commons-io:commons-io:2.4 | | --- org.apache.commons:commons-exec:1.3 | +--- org.seleniumhq.selenium:selenium-ie-driver:3.6.0 -> 2.53.1 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | +--- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () | | --- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | +--- org.seleniumhq.selenium:selenium-opera-driver:3.6.0 | | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | | +--- org.seleniumhq.selenium:selenium-remote-driver:3.6.0 -> 2.53.1 () | | +--- net.bytebuddy:byte-buddy:1.7.5 | | +--- org.apache.commons:commons-exec:1.3 | | +--- commons-codec:commons-codec:1.10 | | +--- commons-logging:commons-logging:1.2 | | +--- com.google.code.gson:gson:2.8.0 -> 2.8.2 | | +--- com.google.guava:guava:23.0 () | | +--- org.apache.httpcomponents:httpclient:4.5.3 () | | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () | +--- org.seleniumhq.selenium:selenium-remote-driver:3.6.0 -> 2.53.1 () | +--- org.seleniumhq.selenium:selenium-safari-driver:3.6.0 -> 2.53.1 | | +--- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | | --- io.netty:netty:3.5.7.Final | +--- org.seleniumhq.selenium:selenium-support:3.6.0 -> 2.53.1 | | --- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | +--- net.bytebuddy:byte-buddy:1.7.5 | +--- org.apache.commons:commons-exec:1.3 | +--- commons-codec:commons-codec:1.10 | +--- commons-logging:commons-logging:1.2 | +--- com.google.code.gson:gson:2.8.0 -> 2.8.2 | +--- com.google.guava:guava:23.0 () | +--- org.apache.httpcomponents:httpclient:4.5.3 () | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () +--- org.seleniumhq.selenium:htmlunit-driver:2.28-SNAPSHOT | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | +--- org.seleniumhq.selenium:selenium-support:3.6.0 -> 2.53.1 () | --- net.sourceforge.htmlunit:htmlunit:2.28-SNAPSHOT -> 2.21 | +--- xalan:xalan:2.7.2 | | --- xalan:serializer:2.7.2 | +--- org.apache.commons:commons-lang3:3.4 | +--- org.apache.httpcomponents:httpclient:4.5.2 -> 4.5.3 () | +--- org.apache.httpcomponents:httpmime:4.5.2 -> 4.5.3 | | --- org.apache.httpcomponents:httpclient:4.5.3 () | +--- net.sourceforge.htmlunit:htmlunit-core-js:2.17 | +--- net.sourceforge.htmlunit:neko-htmlunit:2.21 | | --- xerces:xercesImpl:2.11.0 | | --- xml-apis:xml-apis:1.4.01 | +--- net.sourceforge.cssparser:cssparser:0.9.18 | | --- org.w3c.css:sac:1.3 | +--- commons-io:commons-io:2.4 | +--- commons-logging:commons-logging:1.2 | --- org.eclipse.jetty.websocket:websocket-client:9.2.15.v20160210 -> 9.4.7.v20170914 () --- net.sourceforge.htmlunit:js:3.0-SNAPSHOT --- org.ow2.asm:asm-all:5.1

testRuntimeClasspath - Runtime classpath of source set 'test'. +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot:1.5.8.RELEASE | | | +--- org.springframework:spring-core:4.3.12.RELEASE | | | | --- commons-logging:commons-logging:1.2 | | | --- org.springframework:spring-context:4.3.12.RELEASE | | | +--- org.springframework:spring-aop:4.3.12.RELEASE | | | | +--- org.springframework:spring-beans:4.3.12.RELEASE | | | | | --- org.springframework:spring-core:4.3.12.RELEASE () | | | | --- org.springframework:spring-core:4.3.12.RELEASE () | | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | | +--- org.springframework:spring-core:4.3.12.RELEASE () | | | --- org.springframework:spring-expression:4.3.12.RELEASE | | | --- org.springframework:spring-core:4.3.12.RELEASE () | | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE | | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | | +--- org.springframework.boot:spring-boot-starter-logging:1.5.8.RELEASE | | | +--- ch.qos.logback:logback-classic:1.1.11 | | | | +--- ch.qos.logback:logback-core:1.1.11 | | | | --- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | | +--- org.slf4j:jcl-over-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | +--- org.slf4j:jul-to-slf4j:1.7.25 | | | | --- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:log4j-over-slf4j:1.7.25 | | | --- org.slf4j:slf4j-api:1.7.25 | | +--- org.springframework:spring-core:4.3.12.RELEASE () | | --- org.yaml:snakeyaml:1.17 | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.8.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 | | | --- org.apache.tomcat:tomcat-annotations-api:8.5.23 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.23 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 () | +--- org.hibernate:hibernate-validator:5.3.5.Final | | +--- javax.validation:validation-api:1.1.0.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | --- com.fasterxml:classmate:1.3.1 -> 1.3.4 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.10 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.10 | +--- org.springframework:spring-web:4.3.12.RELEASE | | +--- org.springframework:spring-aop:4.3.12.RELEASE () | | +--- org.springframework:spring-beans:4.3.12.RELEASE () | | +--- org.springframework:spring-context:4.3.12.RELEASE () | | --- org.springframework:spring-core:4.3.12.RELEASE () | --- org.springframework:spring-webmvc:4.3.12.RELEASE | +--- org.springframework:spring-aop:4.3.12.RELEASE () | +--- org.springframework:spring-beans:4.3.12.RELEASE () | +--- org.springframework:spring-context:4.3.12.RELEASE () | +--- org.springframework:spring-core:4.3.12.RELEASE () | +--- org.springframework:spring-expression:4.3.12.RELEASE () | --- org.springframework:spring-web:4.3.12.RELEASE () +--- org.springframework.boot:spring-boot-starter-jetty: -> 1.5.8.RELEASE | +--- org.eclipse.jetty:jetty-servlets:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-continuation:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-security:9.4.7.v20170914 | | --- org.eclipse.jetty:jetty-server:9.4.7.v20170914 | | +--- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 | | +--- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-client:9.4.7.v20170914 | | | | +--- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | | | | --- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-xml:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-util:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-io:9.4.7.v20170914 () | | | --- org.eclipse.jetty.websocket:websocket-common:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-servlet:9.4.7.v20170914 | | | +--- org.eclipse.jetty.websocket:websocket-api:9.4.7.v20170914 | | | --- javax.servlet:javax.servlet-api:3.1.0 | | +--- org.eclipse.jetty:jetty-servlet:9.4.7.v20170914 () | | --- org.eclipse.jetty:jetty-http:9.4.7.v20170914 () | +--- org.eclipse.jetty.websocket:javax-websocket-server-impl:9.4.7.v20170914 | | +--- org.eclipse.jetty:jetty-annotations:9.4.7.v20170914 | | | +--- org.eclipse.jetty:jetty-plus:9.4.7.v20170914 | | | | --- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- org.eclipse.jetty:jetty-webapp:9.4.7.v20170914 () | | | +--- javax.annotation:javax.annotation-api:1.2 | | | +--- org.ow2.asm:asm:5.1 | | | --- org.ow2.asm:asm-commons:5.1 | | | --- org.ow2.asm:asm-tree:5.1 | | | --- org.ow2.asm:asm:5.1 | | +--- org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.7.v20170914 | | | --- org.eclipse.jetty.websocket:websocket-client:9.4.7.v20170914 () | | +--- org.eclipse.jetty.websocket:websocket-server:9.4.7.v20170914 () | | --- javax.websocket:javax.websocket-api:1.0 | --- org.mortbay.jasper:apache-el:8.0.33 +--- org.springframework.boot:spring-boot-starter-thymeleaf: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.8.RELEASE () | +--- org.springframework.boot:spring-boot-starter-web:1.5.8.RELEASE () | +--- org.thymeleaf:thymeleaf-spring4:2.1.5.RELEASE | | +--- org.thymeleaf:thymeleaf:2.1.5.RELEASE | | | +--- ognl:ognl:3.0.8 | | | +--- org.javassist:javassist:3.16.1-GA -> 3.21.0-GA | | | +--- org.unbescape:unbescape:1.1.0.RELEASE | | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | | --- org.slf4j:slf4j-api:1.6.6 -> 1.7.25 | --- nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:1.4.0 | +--- org.codehaus.groovy:groovy:2.4.3 -> 2.4.12 | --- org.thymeleaf:thymeleaf:2.1.4.RELEASE -> 2.1.5.RELEASE () +--- org.springframework.boot:spring-boot-starter-test: -> 1.5.8.RELEASE | +--- org.springframework.boot:spring-boot-test:1.5.8.RELEASE | | --- org.springframework.boot:spring-boot:1.5.8.RELEASE () | +--- org.springframework.boot:spring-boot-test-autoconfigure:1.5.8.RELEASE | | +--- org.springframework.boot:spring-boot-test:1.5.8.RELEASE () | | --- org.springframework.boot:spring-boot-autoconfigure:1.5.8.RELEASE () | +--- com.jayway.jsonpath:json-path:2.2.0 | | +--- net.minidev:json-smart:2.2.1 | | | --- net.minidev:accessors-smart:1.1 | | | --- org.ow2.asm:asm:5.0.3 -> 5.1 | | --- org.slf4j:slf4j-api:1.7.16 -> 1.7.25 | +--- junit:junit:4.12 | | --- org.hamcrest:hamcrest-core:1.3 | +--- org.assertj:assertj-core:2.6.0 | +--- org.mockito:mockito-core:1.10.19 | | +--- org.hamcrest:hamcrest-core:1.1 -> 1.3 | | --- org.objenesis:objenesis:2.1 | +--- org.hamcrest:hamcrest-core:1.3 | +--- org.hamcrest:hamcrest-library:1.3 | | --- org.hamcrest:hamcrest-core:1.3 | +--- org.skyscreamer:jsonassert:1.4.0 | | --- com.vaadin.external.google:android-json:0.0.20131108.vaadin1 | +--- org.springframework:spring-core:4.3.12.RELEASE () | --- org.springframework:spring-test:4.3.12.RELEASE | --- org.springframework:spring-core:4.3.12.RELEASE () +--- org.seleniumhq.selenium:selenium-api:3.6.0 +--- org.seleniumhq.selenium:selenium-java:3.6.0 | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | +--- org.seleniumhq.selenium:selenium-chrome-driver:3.6.0 -> 2.53.1 | | --- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 | | +--- cglib:cglib-nodep:2.1_3 | | +--- com.google.code.gson:gson:2.3.1 -> 2.8.2 | | +--- org.seleniumhq.selenium:selenium-api:2.53.1 -> 3.6.0 | | +--- org.apache.httpcomponents:httpclient:4.5.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | | | +--- commons-logging:commons-logging:1.2 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | +--- com.google.guava:guava:19.0 -> 23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | +--- com.google.errorprone:error_prone_annotations:2.0.18 | | | +--- com.google.j2objc:j2objc-annotations:1.1 | | | --- org.codehaus.mojo:animal-sniffer-annotations:1.14 | | +--- org.apache.commons:commons-exec:1.3 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna:4.2.2 | +--- org.seleniumhq.selenium:selenium-edge-driver:3.6.0 | | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | | +--- org.seleniumhq.selenium:selenium-remote-driver:3.6.0 -> 2.53.1 () | | +--- net.bytebuddy:byte-buddy:1.7.5 | | +--- org.apache.commons:commons-exec:1.3 | | +--- commons-codec:commons-codec:1.10 | | +--- commons-logging:commons-logging:1.2 | | +--- com.google.code.gson:gson:2.8.0 -> 2.8.2 | | +--- com.google.guava:guava:23.0 () | | +--- org.apache.httpcomponents:httpclient:4.5.3 () | | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () | +--- org.seleniumhq.selenium:selenium-firefox-driver:3.6.0 -> 2.53.1 | | +--- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | | +--- commons-io:commons-io:2.4 | | --- org.apache.commons:commons-exec:1.3 | +--- org.seleniumhq.selenium:selenium-ie-driver:3.6.0 -> 2.53.1 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | +--- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () | | --- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | +--- org.seleniumhq.selenium:selenium-opera-driver:3.6.0 | | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | | +--- org.seleniumhq.selenium:selenium-remote-driver:3.6.0 -> 2.53.1 () | | +--- net.bytebuddy:byte-buddy:1.7.5 | | +--- org.apache.commons:commons-exec:1.3 | | +--- commons-codec:commons-codec:1.10 | | +--- commons-logging:commons-logging:1.2 | | +--- com.google.code.gson:gson:2.8.0 -> 2.8.2 | | +--- com.google.guava:guava:23.0 () | | +--- org.apache.httpcomponents:httpclient:4.5.3 () | | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () | +--- org.seleniumhq.selenium:selenium-remote-driver:3.6.0 -> 2.53.1 () | +--- org.seleniumhq.selenium:selenium-safari-driver:3.6.0 -> 2.53.1 | | +--- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | | --- io.netty:netty:3.5.7.Final | +--- org.seleniumhq.selenium:selenium-support:3.6.0 -> 2.53.1 | | --- org.seleniumhq.selenium:selenium-remote-driver:2.53.1 () | +--- net.bytebuddy:byte-buddy:1.7.5 | +--- org.apache.commons:commons-exec:1.3 | +--- commons-codec:commons-codec:1.10 | +--- commons-logging:commons-logging:1.2 | +--- com.google.code.gson:gson:2.8.0 -> 2.8.2 | +--- com.google.guava:guava:23.0 () | +--- org.apache.httpcomponents:httpclient:4.5.3 () | +--- org.apache.httpcomponents:httpcore:4.4.6 -> 4.4.8 | +--- net.java.dev.jna:jna:4.1.0 -> 4.2.2 | --- net.java.dev.jna:jna-platform:4.1.0 -> 4.2.2 () +--- org.seleniumhq.selenium:htmlunit-driver:2.28-SNAPSHOT | +--- org.seleniumhq.selenium:selenium-api:3.6.0 | +--- org.seleniumhq.selenium:selenium-support:3.6.0 -> 2.53.1 () | --- net.sourceforge.htmlunit:htmlunit:2.28-SNAPSHOT -> 2.21 | +--- xalan:xalan:2.7.2 | | --- xalan:serializer:2.7.2 | +--- org.apache.commons:commons-lang3:3.4 | +--- org.apache.httpcomponents:httpclient:4.5.2 -> 4.5.3 () | +--- org.apache.httpcomponents:httpmime:4.5.2 -> 4.5.3 | | --- org.apache.httpcomponents:httpclient:4.5.3 () | +--- net.sourceforge.htmlunit:htmlunit-core-js:2.17 | +--- net.sourceforge.htmlunit:neko-htmlunit:2.21 | | --- xerces:xercesImpl:2.11.0 | | --- xml-apis:xml-apis:1.4.01 | +--- net.sourceforge.cssparser:cssparser:0.9.18 | | --- org.w3c.css:sac:1.3 | +--- commons-io:commons-io:2.4 | +--- commons-logging:commons-logging:1.2 | --- org.eclipse.jetty.websocket:websocket-client:9.2.15.v20160210 -> 9.4.7.v20170914 () --- net.sourceforge.htmlunit:js:3.0-SNAPSHOT --- org.ow2.asm:asm-all:5.1

asashour commented 7 years ago

I am not sure how:

 net.sourceforge.htmlunit:htmlunit:2.28-SNAPSHOT -> 2.21

Resolves to htmlunit 2.21

Maybe graddle is not for snapshots.

Ben1980 commented 7 years ago

I also tried it with maven Maven example with the same result: 2.28-SNAPSHOT -> 2.21

asashour commented 7 years ago

2.21 comes from:

<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>1.5.8.RELEASE</version>

You need to override it.

Ben1980 commented 7 years ago

ok thanks, thats the problem. So the only solution without overriding the spring dependency is to use selenium 2.53.1

asashour commented 7 years ago

Your call, but selenium 2.53.1 is old, and is unsupported (at least by HtmlUnit/driver)

Ben1980 commented 7 years ago

I just might to make the spring team to upgrade image spring boot pom

sebasira commented 4 years ago

Thank you @Ben1980 I didn't know what was the property name for selenium-htmlunit. Also the link provided was very helpful and sueful