GoogleCloudPlatform / app-gradle-plugin

The library has moved to https://github.com/GoogleCloudPlatform/appengine-plugins/tree/main/app-gradle-plugin
Apache License 2.0
153 stars 40 forks source link

Java/Flex/Spring Boot deployment issue #206

Closed baole closed 2 years ago

baole commented 6 years ago

Starting from today, my Java/Flex/Spring boot app doesn't start. It worked perfectly before and also works fine in local environment.

./gradlew appengineDeploy successfully runs, but Spring app was failed to start

Log from cloud's log viewer" Exception in thread "main" java.lang.IllegalStateException: No Available Context at com.google.cloud.runtimes.jetty9.DeploymentCheck.lifeCycleStarted(DeploymentCheck.java:46) at org.eclipse.jetty.util.component.AbstractLifeCycle.setStarted(AbstractLifeCycle.java:179) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:69) at org.eclipse.jetty.xml.XmlConfiguration$1.run(XmlConfiguration.java:1511) at org.eclipse.jetty.xml.XmlConfiguration$1.run(XmlConfiguration.java:1438) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.jetty.xml.XmlConfiguration.main(XmlConfiguration.java:1437)

Here is what I saw from browser: image

gcloud version

gcloud --version
Google Cloud SDK 191.0.0
app-engine-java 1.9.62
app-engine-python 1.9.67
bq 2.0.29
core 2018.02.23
gsutil 4.28
kubectl 

What could be the issue? and how can I fix it?

meltsufin commented 6 years ago

@baole You probably started using the latest version of Spring Boot (2.0), which brings in log4j 2.10.0. This version of log4j is not compatible with Jetty 9.4.5. See: https://github.com/eclipse/jetty.project/issues/1797

I opened an issue to fix this in the runtime. https://github.com/GoogleCloudPlatform/jetty-runtime/issues/225

baole commented 6 years ago

@meltsufin My app uses Spring Boot version 1.5.6. I also checked dependencies and there was no log4j in the dependency tree.

baole commented 6 years ago

@meltsufin since https://github.com/GoogleCloudPlatform/jetty-runtime/issues/225 is closed, but I still see this issue with my app. Is there anything that I need to change from my side?

baole commented 6 years ago

It looks like that gcloud deployment tools added /var/lib/jetty/webapps/root/WEB-INF/lib/log4j-over-slf4j-1.7.25.jar into the dependency list.

image

baole commented 6 years ago

I removed /var/lib/jetty/webapps/root/WEB-INF/lib/log4j-over-slf4j-1.7.25.jar and re-deployed, still doesn't work.

baole commented 6 years ago

This issue blocks us to update new versions with critical bug fixes. Anyone can help?

meltsufin commented 6 years ago

@baole The new image has been released. You can test it out using runtime: custom and gcr.io/google-appengine/jetty. If you're using runtime: java in the app.yaml, you need to wait for the Java builder release. It will be done pretty soon. I'll update the bug when it's done.

baole commented 6 years ago

@meltsufin, I'm using

runtime: java
env: flex

I'm sorry that I've never used custom runtime. How can I use gcr.io/google-appengine/jetty behind runtime: custom in app.yaml?

meltsufin commented 6 years ago

You would need to create a Dockerfile and place it in src/main/docker/:

FROM gcr.io/google-appengine/jetty
ADD your-application.war $APP_DESTINATION_WAR
baole commented 6 years ago

Thanks @meltsufin. I don't want to change our release process. Just wait for the Java builder release. Please keep me in the loop.

meltsufin commented 6 years ago

@baole It's ready now, and I tested a Spring Boot 2.0 app with success.

baole commented 6 years ago

I tried with Spring Boot 1.5.6 without success. Got the same error messages.

meltsufin commented 6 years ago

Are you deploying to App Engine flexible or standard. This fix is only for flexible.

On Mon, Mar 5, 2018, 1:50 PM Bao Le Duc notifications@github.com wrote:

I tried with Spring Boot 1.5.6 without success. Got the same error messages.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/GoogleCloudPlatform/app-gradle-plugin/issues/206#issuecomment-370522590, or mute the thread https://github.com/notifications/unsubscribe-auth/AQ6TjGfpRf4e5Ku9o-dUAxaoYuT9p_y4ks5tbYjtgaJpZM4SaIBp .

baole commented 6 years ago

I'm deploying to AppEngine flexible. Do I need to update gcloud or other tools? or changing build.gradle?

meltsufin commented 6 years ago

Hmmm... In that case can you provide a sample app to reproduce the issue? Thanks!

On Mon, Mar 5, 2018, 2:14 PM Bao Le Duc notifications@github.com wrote:

I'm deploying to AppEngine flexible. Do I need to update gcloud or other tools? or changing build.gradle?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/GoogleCloudPlatform/app-gradle-plugin/issues/206#issuecomment-370530069, or mute the thread https://github.com/notifications/unsubscribe-auth/AQ6TjEJGa23i2mzbi7vbpl-9swaxl0P1ks5tbY54gaJpZM4SaIBp .

saturnism commented 6 years ago

a sample app would help. detailed stacktrace (before and after what was pasted) would help too.

Is it building a fat WAR or a thin WAR?

For App Engine Standard, it's necessary to build a thin WAR w/ certain starter components removed: https://github.com/GoogleCloudPlatform/getting-started-java/tree/master/appengine-standard-java8/springboot-appengine-standard

baole commented 6 years ago

Here is logs that I got from Appengine console Environment: Java/Flexible/Spring Boot 1.5.6

I doubt there is an issue with logging java.util.ServiceConfigurationError: org.apache.juli.logging.Log: Provider org.eclipse.jetty.apache.jsp.JuliLog not a subtype at java.util.ServiceLoader.fail(ServiceLoader.java:239) at java.util.ServiceLoader.access$300(ServiceLoader.java:185) at

Full logs `Exception in thread "main" java.lang.IllegalStateException: No Available Context at com.google.cloud.runtimes.jetty9.DeploymentCheck.lifeCycleStarted(DeploymentCheck.java:46) at org.eclipse.jetty.util.component.AbstractLifeCycle.setStarted(AbstractLifeCycle.java:179) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:69) at org.eclipse.jetty.xml.XmlConfiguration$1.run(XmlConfiguration.java:1584) at org.eclipse.jetty.xml.XmlConfiguration$1.run(XmlConfiguration.java:1508) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.jetty.xml.XmlConfiguration.main(XmlConfiguration.java:1507)

java.lang.IllegalStateException: No Available Context at com.google.cloud.runtimes.jetty9.DeploymentCheck.lifeCycleStarted(DeploymentCheck.java:46) at org.eclipse.jetty.util.component.AbstractLifeCycle.setStarted(AbstractLifeCycle.java:179) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:69) at org.eclipse.jetty.xml.XmlConfiguration$1.run(XmlConfiguration.java:1584) at org.eclipse.jetty.xml.XmlConfiguration$1.run(XmlConfiguration.java:1508) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.jetty.xml.XmlConfiguration.main(XmlConfiguration.java:1507)

org.eclipse.jetty.xml.XmlConfiguration:

+- file:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunec.jar

+- file:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/dnsns.jar

+- file:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunjce_provider.jar

+- file:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jaccess.jar

+- file:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/localedata.jar

+- file:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/zipfs.jar

+- file:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunpkcs11.jar

+- file:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/nashorn.jar

+- file:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/icedtea-sound.jar

+- file:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/cldrdata.jar

+- sun.misc.Launcher$ExtClassLoader@32fa6e36

+- file:/var/lib/jetty/lib/gcp/jetty9-base-0.1.0-SNAPSHOT.jar

+- file:/opt/jetty-home/lib/setuid/jetty-setuid-java-1.0.3.jar

+- file:/var/lib/jetty/lib/slf4j/jcl-over-slf4j-1.7.21.jar

+- file:/var/lib/jetty/lib/gcloud/xmemcached-2.0.0.jar

+- file:/var/lib/jetty/lib/gcloud/threetenbp-1.3.3.jar

+- file:/var/lib/jetty/lib/gcloud/slf4j-api-1.7.5.jar

+- file:/var/lib/jetty/lib/gcloud/proto-google-iam-v1-0.2.1.jar

+- file:/var/lib/jetty/lib/gcloud/proto-google-common-protos-1.1.1.jar

+- file:/var/lib/jetty/lib/gcloud/proto-google-cloud-logging-v2-0.2.1.jar

+- file:/var/lib/jetty/lib/gcloud/proto-google-cloud-datastore-v1-0.2.1.jar

+- file:/var/lib/jetty/lib/gcloud/protobuf-java-util-3.5.1.jar

+- file:/var/lib/jetty/lib/gcloud/protobuf-java-3.5.1.jar

+- file:/var/lib/jetty/lib/gcloud/opencensus-contrib-http-util-0.11.1.jar

+- file:/var/lib/jetty/lib/gcloud/opencensus-contrib-grpc-metrics-0.10.0.jar

+- file:/var/lib/jetty/lib/gcloud/opencensus-api-0.11.1.jar

+- file:/var/lib/jetty/lib/gcloud/jsr305-3.0.1.jar

+- file:/var/lib/jetty/lib/gcloud/joda-time-2.9.2.jar

+- file:/var/lib/jetty/lib/gcloud/jackson-core-asl-1.9.11.jar

+- file:/var/lib/jetty/lib/gcloud/jackson-core-2.1.3.jar

+- file:/var/lib/jetty/lib/gcloud/instrumentation-api-0.4.3.jar

+- file:/var/lib/jetty/lib/gcloud/httpcore-4.0.1.jar

+- file:/var/lib/jetty/lib/gcloud/httpclient-4.0.1.jar

+- file:/var/lib/jetty/lib/gcloud/guava-20.0.jar

+- file:/var/lib/jetty/lib/gcloud/gson-2.7.jar

+- file:/var/lib/jetty/lib/gcloud/grpc-stub-1.9.0.jar

+- file:/var/lib/jetty/lib/gcloud/grpc-protobuf-lite-1.9.0.jar

+- file:/var/lib/jetty/lib/gcloud/grpc-protobuf-1.9.0.jar

+- file:/var/lib/jetty/lib/gcloud/grpc-netty-shaded-1.9.0.jar

+- file:/var/lib/jetty/lib/gcloud/grpc-core-1.9.0.jar

+- file:/var/lib/jetty/lib/gcloud/grpc-context-1.9.0.jar

+- file:/var/lib/jetty/lib/gcloud/grpc-auth-1.9.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-oauth-client-1.23.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-http-client-protobuf-1.20.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-http-client-jackson2-1.23.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-http-client-jackson-1.23.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-http-client-appengine-1.23.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-http-client-1.23.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-cloud-logging-1.19.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-cloud-datastore-1.19.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-cloud-core-http-1.19.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-cloud-core-grpc-1.19.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-cloud-core-1.19.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-auth-library-oauth2-http-0.9.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-auth-library-credentials-0.9.0.jar

+- file:/var/lib/jetty/lib/gcloud/google-api-client-1.23.0.jar

+- file:/var/lib/jetty/lib/gcloud/gax-httpjson-0.36.0.jar

+- file:/var/lib/jetty/lib/gcloud/gax-grpc-1.19.0.jar

+- file:/var/lib/jetty/lib/gcloud/gax-1.19.0.jar

+- file:/var/lib/jetty/lib/gcloud/error_prone_annotations-2.1.2.jar

+- file:/var/lib/jetty/lib/gcloud/datastore-v1-proto-client-1.6.0.jar

+- file:/var/lib/jetty/lib/gcloud/commons-codec-1.3.jar

+- file:/var/lib/jetty/lib/gcloud/api-common-1.3.0.jar

+- file:/opt/jetty-home/lib/jetty-deploy-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar

+- file:/opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar

+- file:/opt/jetty-home/lib/apache-jsp/org.mortbay.jasper.apache-jsp-8.5.23.jar

+- file:/opt/jetty-home/lib/apache-jsp/org.mortbay.jasper.apache-el-8.5.23.jar

+- file:/opt/jetty-home/lib/apache-jsp/org.eclipse.jetty.apache-jsp-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/apache-jsp/org.eclipse.jdt.ecj-3.12.3.jar

+- file:/opt/jetty-home/lib/annotations/javax.annotation-api-1.2.jar

+- file:/opt/jetty-home/lib/annotations/asm-commons-6.0.jar

+- file:/opt/jetty-home/lib/annotations/asm-6.0.jar

+- file:/opt/jetty-home/lib/jetty-annotations-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/jetty-plus-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/jetty-webapp-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/jetty-servlet-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/transactions/javax.transaction-api-1.2.jar

+- file:/opt/jetty-home/lib/jetty-security-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/jetty-jndi-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/jetty-io-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/jetty-util-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/jetty-xml-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/jetty-server-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/jetty-http-9.4.8.v20171121.jar

+- file:/opt/jetty-home/lib/jetty-schemas-3.1.jar

+- file:/opt/jetty-home/lib/servlet-api-3.1.jar

+- file:/var/lib/jetty/resources/

+- file:/var/lib/jetty/lib/slf4j/slf4j-jdk14-1.7.21.jar

+- file:/var/lib/jetty/lib/slf4j/slf4j-api-1.7.21.jar

+- file:/opt/jetty-home/lib/mail/javax.mail.glassfish-1.4.1.v201005082020.jar

+> sun.misc.Launcher$AppClassLoader@18b4aac2

+- {file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar=[jar:file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/META-INF/c-1_0-rt.tld, jar:file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/META-INF/scriptfree.tld, jar:file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/META-INF/fmt-1_0-rt.tld, jar:file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/META-INF/sql-1_0-rt.tld, jar:file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/META-INF/c-1_1.tld, jar:file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/META-INF/permittedTaglibs.tld, jar:file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/META-INF/x-1_0-rt.tld, jar:file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/META-INF/fmt.tld, jar:file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/META-INF/sql.tld, jar:file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/META-INF/x.tld, jar:file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/META-INF/c.tld, jar:file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/META-INF/fn.tld], file:///opt/jetty-home/lib/servlet-api-3.1.jar=[]}

+- {file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar=org.eclipse.jetty.util.resource.EmptyResource@69930714, file:///opt/jetty-home/lib/servlet-api-3.1.jar=org.eclipse.jetty.util.resource.EmptyResource@69930714}

+- {file:///opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar=org.eclipse.jetty.util.resource.EmptyResource@69930714, file:///opt/jetty-home/lib/servlet-api-3.1.jar=org.eclipse.jetty.util.resource.EmptyResource@69930714}

+= org.eclipse.jetty.server.handler.ErrorHandler@1623b78d - STARTED

| +- qtp183264084-13-acceptor-0@3be16d0f-ServerConnector@62ee68d8{HTTP/1.1,[http/1.1]}{0.0.0.0:8080}

| +- sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080]

| | +- actions

| | | +- sun.nio.ch.EPollSelectorImpl@1c997055 keys=0

| | +- keys

| | +- SelectorProducer@158d2680

| | += EatWhatYouKill@5158b42f/SelectorProducer@158d2680/PRODUCING/ReservedThreadExecutor@5c5eefef{s=0/1,p=0}@SelectorManager@ServerConnector@62ee68d8{HTTP/1.1,[http/1.1]}{0.0.0.0:8080} - STARTED

| | += org.eclipse.jetty.io.ManagedSelector@16293aa2 id=0 keys=0 selected=0 actions=0 - STARTED

| | += ReservedThreadExecutor@5c5eefef{s=0/1,p=0}@SelectorManager@ServerConnector@62ee68d8{HTTP/1.1,[http/1.1]}{0.0.0.0:8080} - STARTED

| += SelectorManager@ServerConnector@62ee68d8{HTTP/1.1,[http/1.1]}{0.0.0.0:8080} - STARTED

| | +- HttpConfiguration@6ae5aa72{32768/8192,8192/8192,https://:443,[ForwardedRequestCustomizer@222545dc]}

| += HttpConnectionFactory@340f438e[HTTP/1.1] - STARTED

| +- org.eclipse.jetty.io.ArrayByteBufferPool@6c64cb25

| +~ org.eclipse.jetty.util.thread.ScheduledExecutorScheduler@244038d0 - STARTED

| +~ QueuedThreadPool@qtp183264084{STARTED,10<=10<=200,i=8,q=0} - STARTED

| +~ org.eclipse.jetty.server.Server@548a9f61[9.4.8.v20171121] - STARTED

+= ServerConnector@62ee68d8{HTTP/1.1,[http/1.1]}{0.0.0.0:8080} - STARTED

| +~ org.eclipse.jetty.deploy.providers.WebAppProvider@245b4bdc - STARTED

+= org.eclipse.jetty.deploy.DeploymentManager@dd8ba08 - STARTED

+- [org.eclipse.jetty.webapp.WebInfConfiguration, org.eclipse.jetty.webapp.WebXmlConfiguration, org.eclipse.jetty.webapp.MetaInfConfiguration, org.eclipse.jetty.webapp.FragmentConfiguration, org.eclipse.jetty.plus.webapp.EnvConfiguration, org.eclipse.jetty.plus.webapp.PlusConfiguration, org.eclipse.jetty.annotations.AnnotationConfiguration, org.eclipse.jetty.webapp.JettyWebXmlConfiguration]

+- [Ljava.lang.String;@515aebb0

| += org.eclipse.jetty.server.handler.DefaultHandler@37afeb11 - STARTED

| | +~ o.e.j.w.WebAppContext@7e0b0338{/,[file:///var/lib/jetty/webapps/root/, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/springfox-swagger-ui-2.7.0.jar!/META-INF/resources],UNAVAILABLE}{/root.war} - FAILED

| += org.eclipse.jetty.server.handler.ContextHandlerCollection@52bf72b5[o.e.j.w.WebAppContext@7e0b0338{/,[file:///var/lib/jetty/webapps/root/, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/springfox-swagger-ui-2.7.0.jar!/META-INF/resources],UNAVAILABLE}{/root.war}] - STARTED

+= org.eclipse.jetty.server.handler.HandlerCollection@6d763516[org.eclipse.jetty.server.handler.ContextHandlerCollection@52bf72b5[o.e.j.w.WebAppContext@7e0b0338{/,[file:///var/lib/jetty/webapps/root/, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/springfox-swagger-ui-2.7.0.jar!/META-INF/resources],UNAVAILABLE}{/root.war}], org.eclipse.jetty.server.handler.DefaultHandler@37afeb11] - STARTED

+= org.eclipse.jetty.util.thread.ScheduledExecutorScheduler@244038d0 - STARTED

| +- jobs

| +- 17 qtp183264084-17 IDLE TIMED_WAITING @ sun.misc.Unsafe.park(Native Method)

| +- 18 qtp183264084-18 IDLE TIMED_WAITING @ sun.misc.Unsafe.park(Native Method)

| +- 15 qtp183264084-15 SELECTING RUNNABLE @ sun.nio.ch.EPollArrayWrapper.epollWait(Native Method)

| +- 13 qtp183264084-13-acceptor-0@3be16d0f-ServerConnector@62ee68d8{HTTP/1.1,[http/1.1]}{0.0.0.0:8080} ACCEPTING RUNNABLE @ sun.nio.ch.ServerSocketChannelImpl.accept0(Native Method)

| +- 19 qtp183264084-19 IDLE TIMED_WAITING @ sun.misc.Unsafe.park(Native Method)

| +- 16 qtp183264084-16 IDLE TIMED_WAITING @ sun.misc.Unsafe.park(Native Method)

| +- 12 qtp183264084-12 IDLE TIMED_WAITING @ sun.misc.Unsafe.park(Native Method)

| +- 14 qtp183264084-14 IDLE TIMED_WAITING @ sun.misc.Unsafe.park(Native Method)

| +- 20 qtp183264084-20 IDLE TIMED_WAITING @ sun.misc.Unsafe.park(Native Method)

| +- 11 qtp183264084-11 IDLE TIMED_WAITING @ sun.misc.Unsafe.park(Native Method)

+= QueuedThreadPool@qtp183264084{STARTED,10<=10<=200,i=8,q=0} - STARTED

org.eclipse.jetty.server.Server@548a9f61[9.4.8.v20171121] - STARTED

org.eclipse.jetty.server.Server: Started @10060ms

org.eclipse.jetty.server.AbstractConnector: Started ServerConnector@62ee68d8{HTTP/1.1,[http/1.1]}{0.0.0.0:8080}

java.util.ServiceConfigurationError: org.apache.juli.logging.Log: Provider org.eclipse.jetty.apache.jsp.JuliLog not a subtype at java.util.ServiceLoader.fail(ServiceLoader.java:239) at java.util.ServiceLoader.access$300(ServiceLoader.java:185) at java.util.ServiceLoader$LazyIterator.nextService(ServiceLoader.java:376) at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:404) at java.util.ServiceLoader$1.next(ServiceLoader.java:480) at org.apache.juli.logging.LogFactory.(LogFactory.java:78) at org.apache.juli.logging.LogFactory.(LogFactory.java:66) at org.apache.tomcat.websocket.WsWebSocketContainer.(WsWebSocketContainer.java:90) at org.apache.tomcat.websocket.server.WsServerContainer.(WsServerContainer.java:87) at org.apache.tomcat.websocket.server.WsSci.init(WsSci.java:131) at org.apache.tomcat.websocket.server.WsSci.onStartup(WsSci.java:47) at org.eclipse.jetty.plus.annotation.ContainerInitializer.callStartup(ContainerInitializer.java:140) at org.eclipse.jetty.annotations.ServletContainerInitializersStarter.doStart(ServletContainerInitializersStarter.java:63) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68) at org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:329) at org.eclipse.jetty.webapp.WebAppContext.startWebapp(WebAppContext.java:1515) at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1477) at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:785) at org.eclipse.jetty.servlet.ServletContextHandler.doStart(ServletContextHandler.java:261) at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:545) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68) at org.eclipse.jetty.deploy.bindings.StandardStarter.processBinding(StandardStarter.java:41) at org.eclipse.jetty.deploy.AppLifeCycle.runBindings(AppLifeCycle.java:188) at org.eclipse.jetty.deploy.DeploymentManager.requestAppGoal(DeploymentManager.java:502) at org.eclipse.jetty.deploy.DeploymentManager.addApp(DeploymentManager.java:150) at org.eclipse.jetty.deploy.providers.ScanningAppProvider.fileAdded(ScanningAppProvider.java:180) at org.eclipse.jetty.deploy.providers.WebAppProvider.fileAdded(WebAppProvider.java:447) at org.eclipse.jetty.deploy.providers.ScanningAppProvider$1.fileAdded(ScanningAppProvider.java:64) at org.eclipse.jetty.util.Scanner.reportAddition(Scanner.java:610) at org.eclipse.jetty.util.Scanner.reportDifferences(Scanner.java:529) at org.eclipse.jetty.util.Scanner.scan(Scanner.java:392) at org.eclipse.jetty.util.Scanner.doStart(Scanner.java:313) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68) at org.eclipse.jetty.deploy.providers.ScanningAppProvider.doStart(ScanningAppProvider.java:150) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68) at org.eclipse.jetty.deploy.DeploymentManager.startAppProvider(DeploymentManager.java:564) at org.eclipse.jetty.deploy.DeploymentManager.doStart(DeploymentManager.java:239) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68) at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:133) at org.eclipse.jetty.server.Server.start(Server.java:418) at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:115) at org.eclipse.jetty.server.handler.AbstractHandler.doStart(AbstractHandler.java:113) at org.eclipse.jetty.server.Server.doStart(Server.java:385) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68) at org.eclipse.jetty.xml.XmlConfiguration$1.run(XmlConfiguration.java:1584) at org.eclipse.jetty.xml.XmlConfiguration$1.run(XmlConfiguration.java:1508) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.jetty.xml.XmlConfiguration.main(XmlConfiguration.java:1507)

org.eclipse.jetty.deploy.DeploymentManager: Unable to reach node goal: started

org.eclipse.jetty.annotations.AnnotationConfiguration: Scanning elapsed time=6838ms

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.logging.LogFactory scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/logging/LogFactory.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/logging/LogFactory.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.logging.LogConfigurationException scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/logging/LogConfigurationException.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/logging/LogConfigurationException.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.logging.Log scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/logging/Log.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/logging/Log.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.logging.DirectJDKLog scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/logging/DirectJDKLog.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/logging/DirectJDKLog.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.WebappProperties scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/WebappProperties.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/WebappProperties.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.VerbatimFormatter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/VerbatimFormatter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/VerbatimFormatter.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.OneLineFormatter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/OneLineFormatter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/OneLineFormatter.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.OneLineFormatter$2 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/OneLineFormatter$2.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/OneLineFormatter$2.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.OneLineFormatter$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/OneLineFormatter$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/OneLineFormatter$1.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.OneLineFormatter$1$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/OneLineFormatter$1$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/OneLineFormatter$1$1.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.JdkLoggerFormatter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/JdkLoggerFormatter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/JdkLoggerFormatter.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.FileHandler scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/FileHandler.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/FileHandler.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.FileHandler$2 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/FileHandler$2.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/FileHandler$2.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.FileHandler$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/FileHandler$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/FileHandler$1.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.DateFormatCache scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/DateFormatCache.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/DateFormatCache.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.DateFormatCache$Cache scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/DateFormatCache$Cache.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/DateFormatCache$Cache.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.DateFormatCache$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/DateFormatCache$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/DateFormatCache$1.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.ClassLoaderLogManager scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.ClassLoaderLogManager$RootLogger scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$RootLogger.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$RootLogger.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.ClassLoaderLogManager$LogNode scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$LogNode.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$LogNode.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.ClassLoaderLogManager$Cleaner scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$Cleaner.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$Cleaner.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.ClassLoaderLogManager$ClassLoaderLogInfo scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$ClassLoaderLogInfo.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$ClassLoaderLogInfo.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.ClassLoaderLogManager$3 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$3.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$3.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.ClassLoaderLogManager$2 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$2.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$2.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.ClassLoaderLogManager$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/ClassLoaderLogManager$1.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.AsyncFileHandler scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/AsyncFileHandler.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/AsyncFileHandler.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.AsyncFileHandler$LoggerThread scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/AsyncFileHandler$LoggerThread.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/AsyncFileHandler$LoggerThread.class]

org.eclipse.jetty.annotations.AnnotationParser: org.apache.juli.AsyncFileHandler$LogEntry scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/org/apache/juli/AsyncFileHandler$LogEntry.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar!/org/apache/juli/AsyncFileHandler$LogEntry.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.WebConnection scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/WebConnection.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/WebConnection.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.Part scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/Part.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/Part.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.NoBodyResponse scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/NoBodyResponse.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/NoBodyResponse.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.NoBodyOutputStream scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/NoBodyOutputStream.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/NoBodyOutputStream.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpUtils scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpUtils.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpUtils.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpUpgradeHandler scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpUpgradeHandler.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpUpgradeHandler.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpSessionListener scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionListener.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpSessionListener.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpSessionIdListener scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionIdListener.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpSessionIdListener.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpSessionEvent scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionEvent.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpSessionEvent.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpSessionContext scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionContext.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpSessionContext.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpSessionBindingListener scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionBindingListener.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpSessionBindingListener.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpSessionBindingEvent scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionBindingEvent.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpSessionBindingEvent.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpSessionAttributeListener scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionAttributeListener.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpSessionAttributeListener.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpSessionActivationListener scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionActivationListener.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpSessionActivationListener.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpSession scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSession.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpSession.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpServletResponseWrapper scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletResponseWrapper.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpServletResponseWrapper.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpServletResponse scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletResponse.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpServletResponse.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpServletRequestWrapper scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletRequestWrapper.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpServletRequestWrapper.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpServletRequest scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletRequest.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpServletRequest.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.HttpServlet scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServlet.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/HttpServlet.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.http.Cookie scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/http/Cookie.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/http/Cookie.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.descriptor.TaglibDescriptor scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/descriptor/TaglibDescriptor.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/descriptor/TaglibDescriptor.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.descriptor.JspPropertyGroupDescriptor scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/descriptor/JspPropertyGroupDescriptor.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/descriptor/JspPropertyGroupDescriptor.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.descriptor.JspConfigDescriptor scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/descriptor/JspConfigDescriptor.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/descriptor/JspConfigDescriptor.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.annotation.WebServlet scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/annotation/WebServlet.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/annotation/WebServlet.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.annotation.WebListener scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/annotation/WebListener.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/annotation/WebListener.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.annotation.WebInitParam scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/annotation/WebInitParam.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/annotation/WebInitParam.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.annotation.WebFilter scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/annotation/WebFilter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/annotation/WebFilter.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.annotation.ServletSecurity scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/annotation/ServletSecurity.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/annotation/ServletSecurity.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.annotation.ServletSecurity$TransportGuarantee scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/annotation/ServletSecurity$TransportGuarantee.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/annotation/ServletSecurity$TransportGuarantee.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.annotation.ServletSecurity$EmptyRoleSemantic scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/annotation/ServletSecurity$EmptyRoleSemantic.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/annotation/ServletSecurity$EmptyRoleSemantic.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.annotation.MultipartConfig scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/annotation/MultipartConfig.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/annotation/MultipartConfig.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.annotation.HttpMethodConstraint scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/annotation/HttpMethodConstraint.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/annotation/HttpMethodConstraint.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.annotation.HttpConstraint scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/annotation/HttpConstraint.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/annotation/HttpConstraint.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.annotation.HandlesTypes scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/annotation/HandlesTypes.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/annotation/HandlesTypes.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.WriteListener scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/WriteListener.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/WriteListener.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.UnavailableException scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/UnavailableException.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/UnavailableException.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.SingleThreadModel scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/SingleThreadModel.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/SingleThreadModel.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.SessionTrackingMode scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/SessionTrackingMode.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/SessionTrackingMode.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.SessionCookieConfig scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/SessionCookieConfig.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/SessionCookieConfig.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.ServletSecurityElement scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/ServletSecurityElement.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/ServletSecurityElement.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.ServletResponseWrapper scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/ServletResponseWrapper.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/ServletResponseWrapper.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.ServletResponse scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/ServletResponse.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/ServletResponse.class]

org.eclipse.jetty.annotations.AnnotationParser: javax.servlet.ServletRequestWrapper scanned from multiple locations: [jar:file:///opt/jetty-home/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestWrapper.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar!/javax/servlet/ServletRequestWrapper.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.ForwardingCache$SimpleForwardingCache scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/ForwardingCache$SimpleForwardingCache.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/ForwardingCache$SimpleForwardingCache.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheStats scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheStats.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheStats.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheLoader scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheLoader.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheLoader.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheLoader$UnsupportedLoadingOperationException scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheLoader$UnsupportedLoadingOperationException.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheLoader$UnsupportedLoadingOperationException.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheLoader$SupplierToCacheLoader scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheLoader$SupplierToCacheLoader.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheLoader$SupplierToCacheLoader.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheLoader$InvalidCacheLoadException scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheLoader$InvalidCacheLoadException.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheLoader$InvalidCacheLoadException.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheLoader$FunctionToCacheLoader scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheLoader$FunctionToCacheLoader.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheLoader$FunctionToCacheLoader.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheLoader$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheLoader$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheLoader$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheLoader$1$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheLoader$1$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheLoader$1$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$WriteDurationParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$WriteDurationParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$WriteDurationParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$ValueStrengthParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$ValueStrengthParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$ValueStrengthParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$ValueParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$ValueParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$ValueParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$RefreshDurationParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$RefreshDurationParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$RefreshDurationParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$RecordStatsParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$RecordStatsParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$RecordStatsParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$MaximumWeightParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$MaximumWeightParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$MaximumWeightParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$MaximumSizeParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$MaximumSizeParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$MaximumSizeParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$LongParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$LongParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$LongParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$KeyStrengthParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$KeyStrengthParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$KeyStrengthParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$IntegerParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$IntegerParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$IntegerParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$InitialCapacityParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$InitialCapacityParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$InitialCapacityParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$DurationParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$DurationParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$DurationParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$ConcurrencyLevelParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$ConcurrencyLevelParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$ConcurrencyLevelParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$AccessDurationParser scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$AccessDurationParser.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$AccessDurationParser.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilderSpec$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilderSpec$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilderSpec$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilder scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilder.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilder.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilder$OneWeigher scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilder$OneWeigher.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilder$OneWeigher.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilder$NullListener scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilder$NullListener.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilder$NullListener.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilder$3 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilder$3.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilder$3.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilder$2 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilder$2.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilder$2.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.CacheBuilder$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/CacheBuilder$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/CacheBuilder$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.Cache scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/Cache.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/Cache.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.AbstractLoadingCache scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/AbstractLoadingCache.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/AbstractLoadingCache.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.AbstractCache scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/AbstractCache.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/AbstractCache.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.AbstractCache$StatsCounter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/AbstractCache$StatsCounter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/AbstractCache$StatsCounter.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.cache.AbstractCache$SimpleStatsCounter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/cache/AbstractCache$SimpleStatsCounter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/cache/AbstractCache$SimpleStatsCounter.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.package-info scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/package-info.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/package-info.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.internal.Finalizer scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/internal/Finalizer.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/internal/Finalizer.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.VerifyException scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/VerifyException.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/VerifyException.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Verify scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Verify.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Verify.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Utf8 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Utf8.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Utf8.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Ticker scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Ticker.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Ticker.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Ticker$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Ticker$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Ticker$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Throwables scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Throwables.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Throwables.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Suppliers scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Suppliers.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Suppliers.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Suppliers$ThreadSafeSupplier scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Suppliers$ThreadSafeSupplier.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Suppliers$ThreadSafeSupplier.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Suppliers$SupplierOfInstance scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Suppliers$SupplierOfInstance.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Suppliers$SupplierOfInstance.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Suppliers$SupplierFunctionImpl scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Suppliers$SupplierFunctionImpl.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Suppliers$SupplierFunctionImpl.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Suppliers$SupplierFunction scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Suppliers$SupplierFunction.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Suppliers$SupplierFunction.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Suppliers$SupplierComposition scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Suppliers$SupplierComposition.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Suppliers$SupplierComposition.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Suppliers$MemoizingSupplier scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Suppliers$MemoizingSupplier.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Suppliers$MemoizingSupplier.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Suppliers$ExpiringMemoizingSupplier scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Suppliers$ExpiringMemoizingSupplier.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Suppliers$ExpiringMemoizingSupplier.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Supplier scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Supplier.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Supplier.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Strings scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Strings.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Strings.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Stopwatch scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Stopwatch.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Stopwatch.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Stopwatch$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Stopwatch$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Stopwatch$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.StandardSystemProperty scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/StandardSystemProperty.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/StandardSystemProperty.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter$Strategy scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter$Strategy.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter$Strategy.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter$SplittingIterator scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter$SplittingIterator.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter$SplittingIterator.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter$MapSplitter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter$MapSplitter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter$MapSplitter.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter$5 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter$5.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter$5.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter$4 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter$4.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter$4.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter$4$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter$4$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter$4$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter$3 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter$3.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter$3.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter$3$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter$3$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter$3$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter$2 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter$2.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter$2.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter$2$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter$2$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter$2$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Splitter$1$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Splitter$1$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Splitter$1$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.SmallCharMatcher scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/SmallCharMatcher.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/SmallCharMatcher.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Present scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Present.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Present.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$OrPredicate scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$OrPredicate.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$OrPredicate.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$ObjectPredicate scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$ObjectPredicate.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$ObjectPredicate.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$ObjectPredicate$4 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$ObjectPredicate$4.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$ObjectPredicate$4.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$ObjectPredicate$3 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$ObjectPredicate$3.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$ObjectPredicate$3.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$ObjectPredicate$2 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$ObjectPredicate$2.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$ObjectPredicate$2.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$ObjectPredicate$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$ObjectPredicate$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$ObjectPredicate$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$NotPredicate scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$NotPredicate.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$NotPredicate.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$IsEqualToPredicate scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$IsEqualToPredicate.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$IsEqualToPredicate.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$InstanceOfPredicate scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$InstanceOfPredicate.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$InstanceOfPredicate.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$InPredicate scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$InPredicate.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$InPredicate.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$ContainsPatternPredicate scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$ContainsPatternPredicate.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$ContainsPatternPredicate.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$ContainsPatternFromStringPredicate scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$ContainsPatternFromStringPredicate.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$ContainsPatternFromStringPredicate.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$CompositionPredicate scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$CompositionPredicate.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$CompositionPredicate.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$AndPredicate scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$AndPredicate.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$AndPredicate.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicates$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicates$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicates$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Predicate scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Predicate.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Predicate.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Preconditions scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Preconditions.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Preconditions.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Platform scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Platform.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Platform.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.PairwiseEquivalence scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/PairwiseEquivalence.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/PairwiseEquivalence.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Optional scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Optional.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Optional.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Optional$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Optional$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Optional$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Optional$1$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Optional$1$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Optional$1$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Objects scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Objects.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Objects.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Objects$ToStringHelper scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Objects$ToStringHelper.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Objects$ToStringHelper.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Objects$ToStringHelper$ValueHolder scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Objects$ToStringHelper$ValueHolder.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Objects$ToStringHelper$ValueHolder.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Objects$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Objects$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Objects$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Joiner scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Joiner.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Joiner.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Joiner$MapJoiner scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Joiner$MapJoiner.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Joiner$MapJoiner.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Joiner$3 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Joiner$3.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Joiner$3.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Joiner$2 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Joiner$2.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Joiner$2.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Joiner$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Joiner$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Joiner$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Functions scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Functions.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Functions.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Functions$ToStringFunction scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Functions$ToStringFunction.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Functions$ToStringFunction.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Functions$SupplierFunction scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Functions$SupplierFunction.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Functions$SupplierFunction.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Functions$PredicateFunction scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Functions$PredicateFunction.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Functions$PredicateFunction.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Functions$IdentityFunction scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Functions$IdentityFunction.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Functions$IdentityFunction.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Functions$FunctionForMapNoDefault scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Functions$FunctionForMapNoDefault.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Functions$FunctionForMapNoDefault.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Functions$FunctionComposition scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Functions$FunctionComposition.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Functions$FunctionComposition.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Functions$ForMapWithDefault scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Functions$ForMapWithDefault.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Functions$ForMapWithDefault.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Functions$ConstantFunction scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Functions$ConstantFunction.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Functions$ConstantFunction.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Functions$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Functions$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Functions$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.FunctionalEquivalence scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/FunctionalEquivalence.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/FunctionalEquivalence.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Function scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Function.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Function.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.FinalizableWeakReference scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/FinalizableWeakReference.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/FinalizableWeakReference.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.FinalizableSoftReference scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/FinalizableSoftReference.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/FinalizableSoftReference.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.FinalizableReferenceQueue scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/FinalizableReferenceQueue.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/FinalizableReferenceQueue.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.FinalizableReferenceQueue$SystemLoader scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/FinalizableReferenceQueue$SystemLoader.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/FinalizableReferenceQueue$SystemLoader.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.FinalizableReferenceQueue$FinalizerLoader scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/FinalizableReferenceQueue$FinalizerLoader.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/FinalizableReferenceQueue$FinalizerLoader.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.FinalizableReferenceQueue$DirectLoader scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/FinalizableReferenceQueue$DirectLoader.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/FinalizableReferenceQueue$DirectLoader.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.FinalizableReferenceQueue$DecoupledLoader scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/FinalizableReferenceQueue$DecoupledLoader.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/FinalizableReferenceQueue$DecoupledLoader.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.FinalizableReference scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/FinalizableReference.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/FinalizableReference.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.FinalizablePhantomReference scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/FinalizablePhantomReference.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/FinalizablePhantomReference.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Equivalence scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Equivalence.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Equivalence.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Equivalence$Wrapper scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Equivalence$Wrapper.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Equivalence$Wrapper.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Equivalence$Identity scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Equivalence$Identity.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Equivalence$Identity.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Equivalence$EquivalentToPredicate scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Equivalence$EquivalentToPredicate.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Equivalence$EquivalentToPredicate.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Equivalence$Equals scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Equivalence$Equals.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Equivalence$Equals.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Equivalence$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Equivalence$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Equivalence$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Enums scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Enums.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Enums.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Enums$StringConverter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Enums$StringConverter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Enums$StringConverter.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Defaults scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Defaults.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Defaults.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Converter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Converter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Converter.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Converter$ReverseConverter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Converter$ReverseConverter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Converter$ReverseConverter.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Converter$IdentityConverter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Converter$IdentityConverter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Converter$IdentityConverter.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Converter$FunctionBasedConverter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Converter$FunctionBasedConverter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Converter$FunctionBasedConverter.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Converter$ConverterComposition scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Converter$ConverterComposition.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Converter$ConverterComposition.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Converter$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Converter$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Converter$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Converter$1$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Converter$1$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Converter$1$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Charsets scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Charsets.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Charsets.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CharMatcher scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CharMatcher.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CharMatcher.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CharMatcher$RangesMatcher scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CharMatcher$RangesMatcher.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CharMatcher$RangesMatcher.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CharMatcher$Or scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CharMatcher$Or.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CharMatcher$Or.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CharMatcher$NegatedFastMatcher scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CharMatcher$NegatedFastMatcher.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CharMatcher$NegatedFastMatcher.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CharMatcher$FastMatcher scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CharMatcher$FastMatcher.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CharMatcher$FastMatcher.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CharMatcher$BitSetMatcher scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CharMatcher$BitSetMatcher.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CharMatcher$BitSetMatcher.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CharMatcher$And scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CharMatcher$And.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CharMatcher$And.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CharMatcher$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CharMatcher$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CharMatcher$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CaseFormat scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CaseFormat.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CaseFormat.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CaseFormat$StringConverter scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CaseFormat$StringConverter.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CaseFormat$StringConverter.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CaseFormat$5 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CaseFormat$5.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CaseFormat$5.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CaseFormat$4 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CaseFormat$4.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CaseFormat$4.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CaseFormat$3 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CaseFormat$3.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CaseFormat$3.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CaseFormat$2 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CaseFormat$2.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CaseFormat$2.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.CaseFormat$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/CaseFormat$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/CaseFormat$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Ascii scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Ascii.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Ascii.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.AbstractIterator scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/AbstractIterator.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/AbstractIterator.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.AbstractIterator$State scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/AbstractIterator$State.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/AbstractIterator$State.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.AbstractIterator$1 scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/AbstractIterator$1.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/AbstractIterator$1.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.base.Absent scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/base/Absent.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/base/Absent.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.annotations.VisibleForTesting scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/annotations/VisibleForTesting.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/annotations/VisibleForTesting.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.annotations.GwtIncompatible scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/annotations/GwtIncompatible.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/annotations/GwtIncompatible.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.annotations.GwtCompatible scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/annotations/GwtCompatible.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/annotations/GwtCompatible.class]

org.eclipse.jetty.annotations.AnnotationParser: com.google.common.annotations.Beta scanned from multiple locations: [jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar!/com/google/common/annotations/Beta.class, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar!/com/google/common/annotations/Beta.class]

I0306 04:47:20.029620 57 debugger.cc:111] Debugger::Initialize initialization time: 15 ms

I0306 04:47:20.015070 57 debugger.cc:102] Initializing Java debuglet

I0306 04:47:20.015019 57 rate_limit.cc:143] CPU count: 1

I0306 04:47:20.014551 57 jvmti_agent.cc:420] Attaching Java debuglet

I0306 04:47:20.006103 57 jni_logger.cc:31] Debuggee gcp:664843310757:d0c4ae39c1c6488c registered: {"debuggee":{"id":"gcp:664843310757:d0c4ae39c1c6488c","project":"664843310757","uniquifier":"DA39A3EE5E6B4B0D3255BFEF95601890AFD80709","description":"standupbot2017-j01-58b7cabea440a20-408105518975309733","agentVersion":"google.com/java-gcp/@2","labels":{"minorversion":"408105518975309733","version":"j01-58b7cabea440a20"}}}, agent version: 2.17

I0306 04:47:18.803375 57 yaml_data_visibility_config_reader.cc:35] debugger-blacklist.yaml was not found. Using default settings.

I0306 04:47:18.777087 57 jvm_internals.cc:132] ClassPathLookup constructor time: 2305197 microseconds

I0306 04:47:18.497685 57 jni_logger.cc:31] Total size of indexed resources database: 500067 bytes

org.eclipse.jetty.deploy.providers.ScanningAppProvider: Deployment monitor [file:///var/lib/jetty/webapps/] at interval 0

org.eclipse.jetty.server.Server: jetty-9.4.8.v20171121, build timestamp: 2017-11-21T21:27:37Z, git hash: 82b8fb23f757335bb3329d540ce37a2a2615f0a8

org.eclipse.jetty.setuid.SetUIDListener: Setting UID=999

org.eclipse.jetty.setuid.SetUIDListener: Setting GID=999

org.eclipse.jetty.setuid.SetUIDListener: Opened ServerConnector@62ee68d8{HTTP/1.1,[http/1.1]}{0.0.0.0:8080}

org.eclipse.jetty.setuid.SetUIDListener: Setting umask=02

-XX:InitialHeapSize=1717567488 -XX:MaxHeapSize=1717567488 -XX:+ParallelRefProcEnabled -XX:+PrintCommandLineFlags -XX:+UseCompressedClassPointers -XX:+UseCompressedOops -XX:+UseG1GC

Start command: java -showversion -Djava.io.tmpdir=/tmp/jetty -agentpath:/opt/cdbg/cdbg_java_agent.so=--log_dir=/var/log/app_engine,--alsologtostderr=true,--cdbg_extra_class_path=/var/lib/jetty/webapps/root/WEB-INF/classes:/var/lib/jetty/webapps/root/WEB-INF/lib -Xms1638M -Xmx1638M -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:+PrintCommandLineFlags -Djava.util.logging.config.file=WEB-INF/logging.properties -Djava.io.tmpdir=/tmp -Djetty.home=/opt/jetty-home -Djetty.base=/var/lib/jetty -Djava.util.logging.config.file=/var/lib/jetty/etc/java-util-logging.properties -Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.Slf4jLog -cp /opt/jetty-home/lib/mail/javax.mail.glassfish-1.4.1.v201005082020.jar:/var/lib/jetty/lib/slf4j/slf4j-api-1.7.21.jar:/var/lib/jetty/lib/slf4j/slf4j-jdk14-1.7.21.jar:/var/lib/jetty/resources:/opt/jetty-home/lib/servlet-api-3.1.jar:/opt/jetty-home/lib/jetty-schemas-3.1.jar:/opt/jetty-home/lib/jetty-http-9.4.8.v20171121.jar:/opt/jetty-home/lib/jetty-server-9.4.8.v20171121.jar:/opt/jetty-home/lib/jetty-xml-9.4.8.v20171121.jar:/opt/jetty-home/lib/jetty-util-9.4.8.v20171121.jar:/opt/jetty-home/lib/jetty-io-9.4.8.v20171121.jar:/opt/jetty-home/lib/jetty-jndi-9.4.8.v20171121.jar:/opt/jetty-home/lib/jetty-security-9.4.8.v20171121.jar:/opt/jetty-home/lib/transactions/javax.transaction-api-1.2.jar:/opt/jetty-home/lib/jetty-servlet-9.4.8.v20171121.jar:/opt/jetty-home/lib/jetty-webapp-9.4.8.v20171121.jar:/opt/jetty-home/lib/jetty-plus-9.4.8.v20171121.jar:/opt/jetty-home/lib/jetty-annotations-9.4.8.v20171121.jar:/opt/jetty-home/lib/annotations/asm-6.0.jar:/opt/jetty-home/lib/annotations/asm-commons-6.0.jar:/opt/jetty-home/lib/annotations/javax.annotation-api-1.2.jar:/opt/jetty-home/lib/apache-jsp/org.eclipse.jdt.ecj-3.12.3.jar:/opt/jetty-home/lib/apache-jsp/org.eclipse.jetty.apache-jsp-9.4.8.v20171121.jar:/opt/jetty-home/lib/apache-jsp/org.mortbay.jasper.apache-el-8.5.23.jar:/opt/jetty-home/lib/apache-jsp/org.mortbay.jasper.apache-jsp-8.5.23.jar:/opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar:/opt/jetty-home/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar:/opt/jetty-home/lib/jetty-deploy-9.4.8.v20171121.jar:/var/lib/jetty/lib/gcloud/api-common-1.3.0.jar:/var/lib/jetty/lib/gcloud/commons-codec-1.3.jar:/var/lib/jetty/lib/gcloud/datastore-v1-proto-client-1.6.0.jar:/var/lib/jetty/lib/gcloud/error_prone_annotations-2.1.2.jar:/var/lib/jetty/lib/gcloud/gax-1.19.0.jar:/var/lib/jetty/lib/gcloud/gax-grpc-1.19.0.jar:/var/lib/jetty/lib/gcloud/gax-httpjson-0.36.0.jar:/var/lib/jetty/lib/gcloud/google-api-client-1.23.0.jar:/var/lib/jetty/lib/gcloud/google-auth-library-credentials-0.9.0.jar:/var/lib/jetty/lib/gcloud/google-auth-library-oauth2-http-0.9.0.jar:/var/lib/jetty/lib/gcloud/google-cloud-core-1.19.0.jar:/var/lib/jetty/lib/gcloud/google-cloud-core-grpc-1.19.0.jar:/var/lib/jetty/lib/gcloud/google-cloud-core-http-1.19.0.jar:/var/lib/jetty/lib/gcloud/google-cloud-datastore-1.19.0.jar:/var/lib/jetty/lib/gcloud/google-cloud-logging-1.19.0.jar:/var/lib/jetty/lib/gcloud/google-http-client-1.23.0.jar:/var/lib/jetty/lib/gcloud/google-http-client-appengine-1.23.0.jar:/var/lib/jetty/lib/gcloud/google-http-client-jackson-1.23.0.jar:/var/lib/jetty/lib/gcloud/google-http-client-jackson2-1.23.0.jar:/var/lib/jetty/lib/gcloud/google-http-client-protobuf-1.20.0.jar:/var/lib/jetty/lib/gcloud/google-oauth-client-1.23.0.jar:/var/lib/jetty/lib/gcloud/grpc-auth-1.9.0.jar:/var/lib/jetty/lib/gcloud/grpc-context-1.9.0.jar:/var/lib/jetty/lib/gcloud/grpc-core-1.9.0.jar:/var/lib/jetty/lib/gcloud/grpc-netty-shaded-1.9.0.jar:/var/lib/jetty/lib/gcloud/grpc-protobuf-1.9.0.jar:/var/lib/jetty/lib/gcloud/grpc-protobuf-lite-1.9.0.jar:/var/lib/jetty/lib/gcloud/grpc-stub-1.9.0.jar:/var/lib/jetty/lib/gcloud/gson-2.7.jar:/var/lib/jetty/lib/gcloud/guava-20.0.jar:/var/lib/jetty/lib/gcloud/httpclient-4.0.1.jar:/var/lib/jetty/lib/gcloud/httpcore-4.0.1.jar:/var/lib/jetty/lib/gcloud/instrumentation-api-0.4.3.jar:/var/lib/jetty/lib/gcloud/jackson-core-2.1.3.jar:/var/lib/jetty/lib/gcloud/jackson-core-asl-1.9.11.jar:/var/lib/jetty/lib/gcloud/joda-time-2.9.2.jar:/var/lib/jetty/lib/gcloud/jsr305-3.0.1.jar:/var/lib/jetty/lib/gcloud/opencensus-api-0.11.1.jar:/var/lib/jetty/lib/gcloud/opencensus-contrib-grpc-metrics-0.10.0.jar:/var/lib/jetty/lib/gcloud/opencensus-contrib-http-util-0.11.1.jar:/var/lib/jetty/lib/gcloud/protobuf-java-3.5.1.jar:/var/lib/jetty/lib/gcloud/protobuf-java-util-3.5.1.jar:/var/lib/jetty/lib/gcloud/proto-google-cloud-datastore-v1-0.2.1.jar:/var/lib/jetty/lib/gcloud/proto-google-cloud-logging-v2-0.2.1.jar:/var/lib/jetty/lib/gcloud/proto-google-common-protos-1.1.1.jar:/var/lib/jetty/lib/gcloud/proto-google-iam-v1-0.2.1.jar:/var/lib/jetty/lib/gcloud/slf4j-api-1.7.5.jar:/var/lib/jetty/lib/gcloud/threetenbp-1.3.3.jar:/var/lib/jetty/lib/gcloud/xmemcached-2.0.0.jar:/var/lib/jetty/lib/slf4j/jcl-over-slf4j-1.7.21.jar:/opt/jetty-home/lib/setuid/jetty-setuid-java-1.0.3.jar:/var/lib/jetty/lib/gcp/jetty9-base-0.1.0-SNAPSHOT.jar org.eclipse.jetty.xml.XmlConfiguration /tmp/jetty/tmp.6moFGgehTK.properties /opt/jetty-home/etc/jetty.xml /opt/jetty-home/etc/jetty-webapp.xml /opt/jetty-home/etc/jetty-plus.xml /opt/jetty-home/etc/jetty-annotations.xml /opt/jetty-home/etc/jetty-deploy.xml /opt/jetty-home/etc/jetty-http.xml /opt/jetty-home/etc/jetty-http-forwarded.xml /opt/jetty-home/etc/jetty-setuid.xml /var/lib/jetty/etc/gcp.xml

I0306 04:47:16.474596 57 jni_logger.cc:31] Initializing ClassPathLookup, default classpath: true, extra classpath: [/var/lib/jetty/webapps/root/WEB-INF/classes, /var/lib/jetty/webapps/root/WEB-INF/lib], config: null

org.eclipse.jetty.util.log: Logging initialized @219ms to org.eclipse.jetty.util.log.Slf4jLog

OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)

OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-1~bpo8+1-b11)

openjdk version "1.8.0_131"

I0306 04:47:16.293817 57 jvm_internals.cc:376] Loading internals from /opt/cdbg/cdbg_java_agent_internals.jar

I0306 04:47:16.293526 57 jvmti_agent_thread.cc:99] Agent thread started: CloudDebugger_main_worker_thread

I0306 04:47:16.293256 46 jvmti_agent.cc:217] JvmtiAgent::JvmtiOnVMInit initialization time: 5004 microseconds

I0306 04:47:16.288252 46 jvmti_agent.cc:207] Java VM started

I0306 04:47:16.232110 46 jvmti_agent.cc:196] Java debuglet initialization completed

I0306 04:47:16.231729 46 jvmti_agent.cc:162] Java debuglet initialization started

I0306 04:47:16.231444 46 jvmti_globals.cc:352] Build time: Dec 6 2017 15:08:30

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/util/SystemPropertyUtils.class

creating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/util/

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/PropertiesLauncher.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/archive/ExplodedArchive$1.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/archive/Archive$EntryFilter.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/archive/ExplodedArchive$FileEntryIterator$EntryComparator.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/archive/Archive.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/archive/ExplodedArchive.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/archive/JarFileArchive.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/archive/Archive$Entry.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/archive/JarFileArchive$JarFileEntry.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/archive/ExplodedArchive$FileEntry.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/archive/ExplodedArchive$FileEntryIterator.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/archive/JarFileArchive$EntryIterator.class

creating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/archive/

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/WarLauncher.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/ExecutableArchiveLauncher.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/PropertiesLauncher$1.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/MainMethodRunner.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/JarLauncher.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/LaunchedURLClassLoader.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/data/RandomAccessData.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/data/RandomAccessDataFile.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/data/RandomAccessData$ResourceAccess.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/data/RandomAccessDataFile$FilePool.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/data/RandomAccessDataFile$DataInputStream.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/data/ByteArrayRandomAccessData.class

creating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/data/

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarURLConnection.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarURLConnection$JarEntryName.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/FileHeader.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarFileEntries$EntryIterator.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/ZipInflaterInputStream.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/Bytes.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/CentralDirectoryParser.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/AsciiBytes.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarEntryFilter.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarFile$2.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarURLConnection$1.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarFileEntries$1.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarFile.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarFileEntries.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarFile$JarFileType.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/CentralDirectoryVisitor.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/CentralDirectoryEndRecord.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarFile$3.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarEntry.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/Handler.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/JarFile$1.class

creating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/jar/

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/ExecutableArchiveLauncher$1.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/Launcher.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/PropertiesLauncher$PrefixMatchingArchiveFilter.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/PropertiesLauncher$ArchiveEntryFilter.class

inflating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/LaunchedURLClassLoader$1.class

creating: /var/lib/jetty/webapps/root/org/springframework/boot/loader/

creating: /var/lib/jetty/webapps/root/org/springframework/boot/

creating: /var/lib/jetty/webapps/root/org/springframework/

creating: /var/lib/jetty/webapps/root/org/

inflating: /var/lib/jetty/webapps/root/WEB-INF/logging.properties

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/guava-20.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/okio-1.13.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/okhttp-3.8.1.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/byte-buddy-1.6.14.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-juli-8.5.16.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/logback-core-1.1.11.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/commons-codec-1.10.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/httpcore-4.4.6.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/google-api-services-sqladmin-v1beta4-rev25-1.22.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/hamcrest-core-1.3.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/annotations-13.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/reflections-0.9.11.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/springfox-core-2.7.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/bcprov-jdk15on-1.56.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-security-core-4.2.3.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-tx-4.3.10.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-orm-4.3.10.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-data-commons-1.13.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/hibernate-commons-annotations-5.0.1.Final.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/dom4j-1.6.1.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/jandex-2.0.0.Final.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/antlr-2.7.7.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/javassist-3.21.0-GA.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/hibernate-jpa-2.1-api-1.0.0.Final.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-jdbc-4.3.10.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-jdbc-8.5.16.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/aspectjweaver-1.8.10.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-expression-4.3.10.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-beans-4.3.10.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/jboss-logging-3.3.1.Final.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/validation-api-1.1.0.Final.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-websocket-8.5.16.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-el-8.5.16.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/tomcat-embed-core-8.5.16.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/log4j-over-slf4j-1.7.25.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/jul-to-slf4j-1.7.25.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/jcl-over-slf4j-1.7.25.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/logback-classic-1.1.11.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-context-4.3.10.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/httpclient-4.5.3.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/jsr305-1.3.9.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/guava-jdk5-17.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/google-http-client-jackson2-1.23.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/google-oauth-client-1.23.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/jackson-core-2.8.9.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/jackson-annotations-2.8.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/jdbc-socket-factory-core-1.0.4.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/junit-4.12.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/json-20140107.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/http-client-java-0.89.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/gson-2.8.1.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/kotlin-stdlib-jdk7-1.2.20.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/kotlin-stdlib-1.2.20.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/unbescape-1.1.5.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/attoparser-2.0.4.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/ognl-3.1.12.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/mapstruct-1.1.0.Final.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-plugin-metadata-1.2.0.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-plugin-core-1.2.0.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/slf4j-api-1.7.25.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/classmate-1.3.3.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/springfox-spring-web-2.7.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/springfox-swagger-common-2.7.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/springfox-schema-2.7.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/springfox-spi-2.7.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/swagger-models-1.5.13.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/swagger-annotations-1.5.13.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/bcpkix-jdk15on-1.56.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-security-web-4.2.3.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-security-config-4.2.3.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-aop-4.3.10.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-aspects-4.3.10.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-data-jpa-1.11.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/javax.transaction-api-1.2.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/hibernate-entitymanager-5.0.12.Final.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/hibernate-core-5.0.12.Final.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-boot-starter-jdbc-1.5.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-boot-starter-aop-1.5.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-webmvc-4.3.10.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-web-4.3.10.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/hibernate-validator-5.3.5.Final.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-boot-starter-tomcat-1.5.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/snakeyaml-1.17.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-core-4.3.10.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-boot-starter-logging-1.5.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-boot-autoconfigure-1.5.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-boot-1.5.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/jackson-core-asl-1.9.11.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/google-http-client-1.23.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/google-api-client-1.23.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/lombok-1.16.18.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/jackson-databind-2.8.9.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/logging-interceptor-3.8.1.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/converter-gson-2.3.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/retrofit-2.3.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/mysql-socket-factory-connector-j-6-1.0.4.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/mysql-connector-java-6.0.5.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/mailjet-client-4.1.1.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/stripe-java-5.28.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-boot-devtools-1.5.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/kotlin-stdlib-jdk8-1.2.20.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/thymeleaf-3.0.8.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/springfox-swagger-ui-2.7.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/springfox-swagger2-2.7.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/jjwt-0.7.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-security-jwt-1.0.8.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-boot-starter-security-1.5.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-boot-starter-data-jpa-1.5.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-boot-starter-web-1.5.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/spring-boot-starter-1.5.6.RELEASE.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/google-http-client-jackson-1.23.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/google-http-client-appengine-1.23.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/google-api-services-cloudtasks-v2beta2-rev37-1.23.0.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/chatbase.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/mailgun.jar

extracting: /var/lib/jetty/webapps/root/WEB-INF/lib/slack-api.jar

creating: /var/lib/jetty/webapps/root/WEB-INF/lib/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/application-local.yml

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/migration/team.json

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/migration/groups.json

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/migration/README

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/migration/migration.sql

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/migration/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/application-migration.yml

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/application.yml

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/templates/greeting.html

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/templates/email.html

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/templates/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/mysql/my.cnf

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/mysql/my.conf

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/mysql/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/application-test.yml

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/application-gae_dev.yml

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/schema.sql

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/application-gae_prod.yml

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/application-local_mockslack.yml

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/AdminService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/AnalyticsService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/OrganizationService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/SlackCommonService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/task/CreatePersonReport.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/task/NotifierTask.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/task/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/TaskQueueService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/BaseService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/AuthService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/MailerService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/StatService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/PersonService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/SubscriptionService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/StandupService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/TemplateService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/EmailReport$Companion.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/SlackUtil$Companion.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/SlackUtil.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/formatter/UserThreadReportFormatter.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/formatter/ReportFormatter.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/formatter/SlackStandupReportMessage.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/formatter/ReportFormatter$Companion.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/formatter/UserReportFormatter.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/formatter/NoConversationReportFormatter.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/formatter/QuestionReportFormatter.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/formatter/SlackStandupReport.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/formatter/QuestionThreadReportFormatter.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/formatter/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/SlackHandler.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/slack/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/EmailSection.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/PlatformHandler.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/EmailItem.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/EmailReport.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/handler/

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/services/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/migration/MigrationService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/migration/MigTeamData.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/migration/MTeam.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/migration/MigHelper$groups$type$1.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/migration/MigOrg.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/migration/MigHelper.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/migration/MigMembers.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/migration/MigHelper$team$type$1.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/migration/MigStandup.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/migration/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/StripeController.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/OrganizationController.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/exception/AliceExceptionController.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/exception/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/StandupController.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/WarmupController.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/TaskController.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/AuthController.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/CallbackController.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/SubscriptionController.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/HomeController.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/CompatCallbackController.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/TestController.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/AuthController$JWTToken.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/controller/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/AliceApplication.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/exception/AliceException.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/exception/AliceHttpRequestException.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/exception/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/PersonDto.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/OrgState.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/StandupDto.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/StandupConversationDto$isCompleted$1.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/ReportDto.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/LoginVM.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/ReportFormat.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/StandupConversationDto.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/Platform.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/TimeZoneDto.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/SubscriptionDto.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/AuthAccessToken.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/GroupDto.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/OrganizationDto.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/OrgStatDto.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/PersonState.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/SubscriptionPlan.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/SubscriptionState.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/StandupState.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/StandupConversationsDto.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/SlackUserDto.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/StandupConversationDto$Companion.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/StandupDto$Companion.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/SlackAuthState.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/StripeCustomerDto.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/StandupMemberType.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/model/

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/network/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/AliceApplication$ENV.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$12.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/PersonEntity.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupConversationEntity$toString$8.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$10.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$14.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$9.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$11.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$13.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupReportEntity.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/PaymentHistoryEntity.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupConversationEntity.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupReportPartEntity.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$8.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupConversationEntity$toString$3.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$4.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StripeWebhookEntity.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/SubscriptionEntity.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/OrgStatEntity.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$6.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupConversationEntity$toString$1.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$2.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StripeCustomerEntity.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupConversationEntity$toString$5.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupPlanningEntity.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupReportEntity$Companion.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupConversationEntity$toString$7.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupReportPartEntity$Companion.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$7.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$5.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupConversationEntity$toString$2.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$1.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupConversationEntity$toString$6.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupConversationEntity$toString$4.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/StandupEntity$toString$3.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/OrganizationEntity.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/entity/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/security/DomainUserDetailsService.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/security/JwtAuthenticationEntryPoint.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/security/SecurityUtils.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/security/jwt/TokenProvider.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/security/jwt/JWTConfigurer.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/security/jwt/JWTFilter.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/security/jwt/

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/security/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/StripeEventType.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/JsonStringListConverter.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/Constants$Companion.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/StripeEventType$Companion.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/AliceConfig$Companion.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/AliceUtils.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/DataUtil.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/AliceConfig.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/AnyExtensionsKt.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/DataUtil$1.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/HttpResponseUtils.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/Parameters.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/Constants.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/LogUtil.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/DataUtil$2.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/util/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/StandupPlanningRepository.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/StandupConversationRepository.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/SubscriptionRepository.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/OrgStatRepository.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/PaymentHistoryRepository.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/StripeCustomerRepository.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/PersonRepository.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/StandupReportPartRepository.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/StandupRepository.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/StripeWebhookRepository.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/StandupReportRepository.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/OrganizationRepository.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/repository/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/configuration/SwaggerConfig.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/configuration/MemcacheConfig.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/configuration/SlackApiConfig.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/configuration/SecurityConfig.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/configuration/ApplicationProperties.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/configuration/ChatBaseConfig.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/configuration/SlackApiConfig$SlackConfig.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/configuration/MailerConfig.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/configuration/WebConfig.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/configuration/TaskCloudConfig.class

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/configuration/MemcacheConfig$MemcacheService.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/configuration/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/ServletInitializer.class

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/alice/

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/anttek/

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/com/

inflating: /var/lib/jetty/webapps/root/WEB-INF/classes/META-INF/backend.kotlin_module

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/META-INF/

creating: /var/lib/jetty/webapps/root/WEB-INF/classes/

creating: /var/lib/jetty/webapps/root/WEB-INF/

inflating: /var/lib/jetty/webapps/root/META-INF/MANIFEST.MF

creating: /var/lib/jetty/webapps/root/META-INF/

Archive: /var/lib/jetty/webapps/root.war`

baole commented 6 years ago

Dependency tree

` Parallel execution with configuration on demand is an incubating feature. :dependencies


Root project

apiElements - API elements for main. (n) No dependencies

archives - Configuration for archive artifacts. No dependencies

compile - Dependencies for source set 'main' (deprecated, use 'implementation ' instead). +--- project :slack-api | +--- com.squareup.retrofit2:retrofit:2.3.0 | | --- com.squareup.okhttp3:okhttp:3.8.0 -> 3.8.1 | | --- com.squareup.okio:okio:1.13.0 | +--- com.squareup.retrofit2:converter-gson:2.3.0 | | +--- com.squareup.retrofit2:retrofit:2.3.0 () | | --- com.google.code.gson:gson:2.7 -> 2.8.1 | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 | | --- com.squareup.okhttp3:okhttp:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.9 | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 | | --- org.jetbrains:annotations:13.0 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.20 | --- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 () +--- project :mailgun | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- project :chatbase | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 () | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- com.google.apis:google-api-services-cloudtasks:v2beta2+ -> v2beta2-rev37-1.23.0 | --- com.google.api-client:google-api-client:1.23.0 | +--- com.google.oauth-client:google-oauth-client:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | --- org.apache.httpcomponents:httpclient:4.0.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | --- com.google.code.findbugs:jsr305:1.3.9 | +--- com.google.http-client:google-http-client-jackson2:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 () | | --- com.fasterxml.jackson.core:jackson-core:2.1.3 -> 2.8.9 | --- com.google.guava:guava-jdk5:17.0 +--- com.google.http-client:google-http-client-appengine:1.23.0 | --- com.google.http-client:google-http-client:1.23.0 () +--- com.google.http-client:google-http-client-jackson:1.23.0 | +--- com.google.http-client:google-http-client:1.23.0 () | --- org.codehaus.jackson:jackson-core-asl:1.9.11 +--- org.springframework.boot:spring-boot-starter: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-context:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE | | | | --- org.springframework:spring-core:4.3.10.RELEASE | | | --- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-expression:4.3.10.RELEASE | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-logging:1.5.6.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.10.RELEASE | --- org.yaml:snakeyaml:1.17 +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.6.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | +--- 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.3 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.9 () | +--- org.springframework:spring-web:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | --- org.springframework:spring-webmvc:4.3.10.RELEASE | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework:spring-beans:4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.10.RELEASE () +--- org.springframework.boot:spring-boot-starter-data-jpa: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-aop:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | --- org.aspectj:aspectjweaver:1.8.10 | +--- org.springframework.boot:spring-boot-starter-jdbc:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.apache.tomcat:tomcat-jdbc:8.5.16 | | | --- org.apache.tomcat:tomcat-juli:8.5.16 | | --- org.springframework:spring-jdbc:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-tx:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.hibernate:hibernate-core:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | +--- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | | +--- antlr:antlr:2.7.7 | | +--- org.jboss:jandex:2.0.0.Final | | +--- dom4j:dom4j:1.6.1 | | --- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final | | --- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | +--- org.hibernate:hibernate-entitymanager:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate:hibernate-core:5.0.12.Final () | | +--- dom4j:dom4j:1.6.1 | | +--- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final () | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | --- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | +--- javax.transaction:javax.transaction-api:1.2 | +--- org.springframework.data:spring-data-jpa:1.11.6.RELEASE | | +--- org.springframework.data:spring-data-commons:1.13.6.RELEASE | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | | +--- org.springframework:spring-orm:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-jdbc:4.3.10.RELEASE () | | | --- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.slf4j:slf4j-api:1.7.25 | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | --- org.springframework:spring-aspects:4.3.10.RELEASE | --- org.aspectj:aspectjweaver:1.8.10 +--- org.springframework.boot:spring-boot-starter-security: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework.security:spring-security-config:4.2.3.RELEASE | | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE | | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | | | --- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework.security:spring-security-web:4.2.3.RELEASE | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.9.RELEASE -> 4.3.10.RELEASE () +--- org.springframework.security:spring-security-jwt:1.0.8.RELEASE | --- org.bouncycastle:bcpkix-jdk15on:1.56 | --- org.bouncycastle:bcprov-jdk15on:1.56 +--- io.jsonwebtoken:jjwt:0.7.0 | --- com.fasterxml.jackson.core:jackson-databind:2.8.2 -> 2.8.9 () +--- io.springfox:springfox-swagger2:2.7.0 | +--- io.swagger:swagger-annotations:1.5.13 | +--- io.swagger:swagger-models:1.5.13 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.5 -> 2.8.0 | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | --- io.swagger:swagger-annotations:1.5.13 | +--- io.springfox:springfox-spi:2.7.0 | | --- io.springfox:springfox-core:2.7.0 | | +--- net.bytebuddy:byte-buddy:1.6.14 | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE | | | +--- org.springframework:spring-beans:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-aop:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | +--- io.springfox:springfox-schema:2.7.0 | | +--- io.springfox:springfox-core:2.7.0 () | | --- io.springfox:springfox-spi:2.7.0 () | +--- io.springfox:springfox-swagger-common:2.7.0 | | +--- io.swagger:swagger-annotations:1.5.13 | | +--- io.swagger:swagger-models:1.5.13 () | | +--- io.springfox:springfox-spi:2.7.0 () | | +--- io.springfox:springfox-schema:2.7.0 () | | +--- io.springfox:springfox-spring-web:2.7.0 | | | +--- org.reflections:reflections:0.9.11 | | | | +--- com.google.guava:guava:20.0 | | | | --- org.javassist:javassist:3.21.0-GA | | | +--- com.google.guava:guava:18.0 -> 20.0 | | | +--- com.fasterxml:classmate:1.3.3 | | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | | | --- io.springfox:springfox-spi:2.7.0 () | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | +--- io.springfox:springfox-spring-web:2.7.0 () | +--- com.google.guava:guava:18.0 -> 20.0 | +--- com.fasterxml:classmate:1.3.3 | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | --- org.mapstruct:mapstruct:1.1.0.Final +--- io.springfox:springfox-swagger-ui:2.7.0 | --- io.springfox:springfox-spring-web:2.7.0 () +--- org.thymeleaf:thymeleaf:3.0.8.RELEASE | +--- ognl:ognl:3.1.12 | | --- org.javassist:javassist:3.20.0-GA -> 3.21.0-GA | +--- org.attoparser:attoparser:2.0.4.RELEASE | +--- org.unbescape:unbescape:1.1.5.RELEASE | --- org.slf4j:slf4j-api:1.7.25 +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- org.springframework.boot:spring-boot-devtools: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE () | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE () +--- com.stripe:stripe-java:5.28.0 | --- com.google.code.gson:gson:2.8.2 -> 2.8.1 --- com.mailjet:mailjet-client:4.1.1 +--- com.turbomanage.basic-http-client:http-client-java:0.89 | +--- com.fasterxml.jackson.core:jackson-core:2.3.2 -> 2.8.9 | --- com.fasterxml.jackson.core:jackson-databind:2.3.2 -> 2.8.9 () +--- org.json:json:20140107 --- junit:junit:4.11 -> 4.12 --- org.hamcrest:hamcrest-core:1.3

compileClasspath - Compile classpath for source set 'main'. +--- project :slack-api | +--- com.squareup.retrofit2:retrofit:2.3.0 | | --- com.squareup.okhttp3:okhttp:3.8.0 -> 3.8.1 | | --- com.squareup.okio:okio:1.13.0 | +--- com.squareup.retrofit2:converter-gson:2.3.0 | | +--- com.squareup.retrofit2:retrofit:2.3.0 () | | --- com.google.code.gson:gson:2.7 -> 2.8.1 | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 | | --- com.squareup.okhttp3:okhttp:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.9 | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 | | --- org.jetbrains:annotations:13.0 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.20 | --- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 () +--- project :mailgun | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- project :chatbase | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 () | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- com.google.apis:google-api-services-cloudtasks:v2beta2+ -> v2beta2-rev37-1.23.0 | --- com.google.api-client:google-api-client:1.23.0 | +--- com.google.oauth-client:google-oauth-client:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | --- org.apache.httpcomponents:httpclient:4.0.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | --- com.google.code.findbugs:jsr305:1.3.9 | +--- com.google.http-client:google-http-client-jackson2:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 () | | --- com.fasterxml.jackson.core:jackson-core:2.1.3 -> 2.8.9 | --- com.google.guava:guava-jdk5:17.0 +--- com.google.http-client:google-http-client-appengine:1.23.0 | --- com.google.http-client:google-http-client:1.23.0 () +--- com.google.http-client:google-http-client-jackson:1.23.0 | +--- com.google.http-client:google-http-client:1.23.0 () | --- org.codehaus.jackson:jackson-core-asl:1.9.11 +--- org.springframework.boot:spring-boot-starter: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-context:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE | | | | --- org.springframework:spring-core:4.3.10.RELEASE | | | --- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-expression:4.3.10.RELEASE | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-logging:1.5.6.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.10.RELEASE | --- org.yaml:snakeyaml:1.17 +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.6.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | +--- 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.3 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.9 () | +--- org.springframework:spring-web:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | --- org.springframework:spring-webmvc:4.3.10.RELEASE | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework:spring-beans:4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.10.RELEASE () +--- org.springframework.boot:spring-boot-starter-data-jpa: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-aop:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | --- org.aspectj:aspectjweaver:1.8.10 | +--- org.springframework.boot:spring-boot-starter-jdbc:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.apache.tomcat:tomcat-jdbc:8.5.16 | | | --- org.apache.tomcat:tomcat-juli:8.5.16 | | --- org.springframework:spring-jdbc:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-tx:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.hibernate:hibernate-core:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | +--- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | | +--- antlr:antlr:2.7.7 | | +--- org.jboss:jandex:2.0.0.Final | | +--- dom4j:dom4j:1.6.1 | | --- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final | | --- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | +--- org.hibernate:hibernate-entitymanager:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate:hibernate-core:5.0.12.Final () | | +--- dom4j:dom4j:1.6.1 | | +--- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final () | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | --- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | +--- javax.transaction:javax.transaction-api:1.2 | +--- org.springframework.data:spring-data-jpa:1.11.6.RELEASE | | +--- org.springframework.data:spring-data-commons:1.13.6.RELEASE | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | | +--- org.springframework:spring-orm:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-jdbc:4.3.10.RELEASE () | | | --- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.slf4j:slf4j-api:1.7.25 | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | --- org.springframework:spring-aspects:4.3.10.RELEASE | --- org.aspectj:aspectjweaver:1.8.10 +--- org.springframework.boot:spring-boot-starter-security: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework.security:spring-security-config:4.2.3.RELEASE | | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE | | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | | | --- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework.security:spring-security-web:4.2.3.RELEASE | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.9.RELEASE -> 4.3.10.RELEASE () +--- org.springframework.security:spring-security-jwt:1.0.8.RELEASE | --- org.bouncycastle:bcpkix-jdk15on:1.56 | --- org.bouncycastle:bcprov-jdk15on:1.56 +--- io.jsonwebtoken:jjwt:0.7.0 | --- com.fasterxml.jackson.core:jackson-databind:2.8.2 -> 2.8.9 () +--- io.springfox:springfox-swagger2:2.7.0 | +--- io.swagger:swagger-annotations:1.5.13 | +--- io.swagger:swagger-models:1.5.13 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.5 -> 2.8.0 | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | --- io.swagger:swagger-annotations:1.5.13 | +--- io.springfox:springfox-spi:2.7.0 | | --- io.springfox:springfox-core:2.7.0 | | +--- net.bytebuddy:byte-buddy:1.6.14 | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE | | | +--- org.springframework:spring-beans:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-aop:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | +--- io.springfox:springfox-schema:2.7.0 | | +--- io.springfox:springfox-core:2.7.0 () | | --- io.springfox:springfox-spi:2.7.0 () | +--- io.springfox:springfox-swagger-common:2.7.0 | | +--- io.swagger:swagger-annotations:1.5.13 | | +--- io.swagger:swagger-models:1.5.13 () | | +--- io.springfox:springfox-spi:2.7.0 () | | +--- io.springfox:springfox-schema:2.7.0 () | | +--- io.springfox:springfox-spring-web:2.7.0 | | | +--- org.reflections:reflections:0.9.11 | | | | +--- com.google.guava:guava:20.0 | | | | --- org.javassist:javassist:3.21.0-GA | | | +--- com.google.guava:guava:18.0 -> 20.0 | | | +--- com.fasterxml:classmate:1.3.3 | | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | | | --- io.springfox:springfox-spi:2.7.0 () | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | +--- io.springfox:springfox-spring-web:2.7.0 () | +--- com.google.guava:guava:18.0 -> 20.0 | +--- com.fasterxml:classmate:1.3.3 | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | --- org.mapstruct:mapstruct:1.1.0.Final +--- io.springfox:springfox-swagger-ui:2.7.0 | --- io.springfox:springfox-spring-web:2.7.0 () +--- org.thymeleaf:thymeleaf:3.0.8.RELEASE | +--- ognl:ognl:3.1.12 | | --- org.javassist:javassist:3.20.0-GA -> 3.21.0-GA | +--- org.attoparser:attoparser:2.0.4.RELEASE | +--- org.unbescape:unbescape:1.1.5.RELEASE | --- org.slf4j:slf4j-api:1.7.25 +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- org.springframework.boot:spring-boot-devtools: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE () | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE () +--- com.stripe:stripe-java:5.28.0 | --- com.google.code.gson:gson:2.8.2 -> 2.8.1 --- com.mailjet:mailjet-client:4.1.1 +--- com.turbomanage.basic-http-client:http-client-java:0.89 | +--- com.fasterxml.jackson.core:jackson-core:2.3.2 -> 2.8.9 | --- com.fasterxml.jackson.core:jackson-databind:2.3.2 -> 2.8.9 () +--- org.json:json:20140107 --- junit:junit:4.11 -> 4.12 --- org.hamcrest:hamcrest-core:1.3

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

default - Configuration for default artifacts. +--- project :slack-api | +--- com.squareup.retrofit2:retrofit:2.3.0 | | --- com.squareup.okhttp3:okhttp:3.8.0 -> 3.8.1 | | --- com.squareup.okio:okio:1.13.0 | +--- com.squareup.retrofit2:converter-gson:2.3.0 | | +--- com.squareup.retrofit2:retrofit:2.3.0 () | | --- com.google.code.gson:gson:2.7 -> 2.8.1 | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 | | --- com.squareup.okhttp3:okhttp:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.9 | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 | | --- org.jetbrains:annotations:13.0 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.20 | --- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 () +--- project :mailgun | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- project :chatbase | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 () | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- com.google.apis:google-api-services-cloudtasks:v2beta2+ -> v2beta2-rev37-1.23.0 | --- com.google.api-client:google-api-client:1.23.0 | +--- com.google.oauth-client:google-oauth-client:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | --- org.apache.httpcomponents:httpclient:4.0.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | --- com.google.code.findbugs:jsr305:1.3.9 | +--- com.google.http-client:google-http-client-jackson2:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 () | | --- com.fasterxml.jackson.core:jackson-core:2.1.3 -> 2.8.9 | --- com.google.guava:guava-jdk5:17.0 +--- com.google.http-client:google-http-client-appengine:1.23.0 | --- com.google.http-client:google-http-client:1.23.0 () +--- com.google.http-client:google-http-client-jackson:1.23.0 | +--- com.google.http-client:google-http-client:1.23.0 () | --- org.codehaus.jackson:jackson-core-asl:1.9.11 +--- org.springframework.boot:spring-boot-starter: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-context:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE | | | | --- org.springframework:spring-core:4.3.10.RELEASE | | | --- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-expression:4.3.10.RELEASE | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-logging:1.5.6.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.10.RELEASE | --- org.yaml:snakeyaml:1.17 +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.6.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | +--- 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.3 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.9 () | +--- org.springframework:spring-web:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | --- org.springframework:spring-webmvc:4.3.10.RELEASE | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework:spring-beans:4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.10.RELEASE () +--- org.springframework.boot:spring-boot-starter-data-jpa: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-aop:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | --- org.aspectj:aspectjweaver:1.8.10 | +--- org.springframework.boot:spring-boot-starter-jdbc:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.apache.tomcat:tomcat-jdbc:8.5.16 | | | --- org.apache.tomcat:tomcat-juli:8.5.16 | | --- org.springframework:spring-jdbc:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-tx:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.hibernate:hibernate-core:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | +--- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | | +--- antlr:antlr:2.7.7 | | +--- org.jboss:jandex:2.0.0.Final | | +--- dom4j:dom4j:1.6.1 | | --- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final | | --- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | +--- org.hibernate:hibernate-entitymanager:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate:hibernate-core:5.0.12.Final () | | +--- dom4j:dom4j:1.6.1 | | +--- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final () | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | --- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | +--- javax.transaction:javax.transaction-api:1.2 | +--- org.springframework.data:spring-data-jpa:1.11.6.RELEASE | | +--- org.springframework.data:spring-data-commons:1.13.6.RELEASE | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | | +--- org.springframework:spring-orm:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-jdbc:4.3.10.RELEASE () | | | --- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.slf4j:slf4j-api:1.7.25 | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | --- org.springframework:spring-aspects:4.3.10.RELEASE | --- org.aspectj:aspectjweaver:1.8.10 +--- org.springframework.boot:spring-boot-starter-security: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework.security:spring-security-config:4.2.3.RELEASE | | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE | | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | | | --- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework.security:spring-security-web:4.2.3.RELEASE | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.9.RELEASE -> 4.3.10.RELEASE () +--- org.springframework.security:spring-security-jwt:1.0.8.RELEASE | --- org.bouncycastle:bcpkix-jdk15on:1.56 | --- org.bouncycastle:bcprov-jdk15on:1.56 +--- io.jsonwebtoken:jjwt:0.7.0 | --- com.fasterxml.jackson.core:jackson-databind:2.8.2 -> 2.8.9 () +--- io.springfox:springfox-swagger2:2.7.0 | +--- io.swagger:swagger-annotations:1.5.13 | +--- io.swagger:swagger-models:1.5.13 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.5 -> 2.8.0 | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | --- io.swagger:swagger-annotations:1.5.13 | +--- io.springfox:springfox-spi:2.7.0 | | --- io.springfox:springfox-core:2.7.0 | | +--- net.bytebuddy:byte-buddy:1.6.14 | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE | | | +--- org.springframework:spring-beans:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-aop:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | +--- io.springfox:springfox-schema:2.7.0 | | +--- io.springfox:springfox-core:2.7.0 () | | --- io.springfox:springfox-spi:2.7.0 () | +--- io.springfox:springfox-swagger-common:2.7.0 | | +--- io.swagger:swagger-annotations:1.5.13 | | +--- io.swagger:swagger-models:1.5.13 () | | +--- io.springfox:springfox-spi:2.7.0 () | | +--- io.springfox:springfox-schema:2.7.0 () | | +--- io.springfox:springfox-spring-web:2.7.0 | | | +--- org.reflections:reflections:0.9.11 | | | | +--- com.google.guava:guava:20.0 | | | | --- org.javassist:javassist:3.21.0-GA | | | +--- com.google.guava:guava:18.0 -> 20.0 | | | +--- com.fasterxml:classmate:1.3.3 | | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | | | --- io.springfox:springfox-spi:2.7.0 () | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | +--- io.springfox:springfox-spring-web:2.7.0 () | +--- com.google.guava:guava:18.0 -> 20.0 | +--- com.fasterxml:classmate:1.3.3 | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | --- org.mapstruct:mapstruct:1.1.0.Final +--- io.springfox:springfox-swagger-ui:2.7.0 | --- io.springfox:springfox-spring-web:2.7.0 () +--- org.thymeleaf:thymeleaf:3.0.8.RELEASE | +--- ognl:ognl:3.1.12 | | --- org.javassist:javassist:3.20.0-GA -> 3.21.0-GA | +--- org.attoparser:attoparser:2.0.4.RELEASE | +--- org.unbescape:unbescape:1.1.5.RELEASE | --- org.slf4j:slf4j-api:1.7.25 +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- org.springframework.boot:spring-boot-devtools: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE () | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE () +--- com.stripe:stripe-java:5.28.0 | --- com.google.code.gson:gson:2.8.2 -> 2.8.1 +--- com.mailjet:mailjet-client:4.1.1 | +--- com.turbomanage.basic-http-client:http-client-java:0.89 | | +--- com.fasterxml.jackson.core:jackson-core:2.3.2 -> 2.8.9 | | --- com.fasterxml.jackson.core:jackson-databind:2.3.2 -> 2.8.9 () | +--- org.json:json:20140107 | --- junit:junit:4.11 -> 4.12 | --- org.hamcrest:hamcrest-core:1.3 +--- mysql:mysql-connector-java:6.0.5 --- com.google.cloud.sql:mysql-socket-factory-connector-j-6:1.0.4 +--- mysql:mysql-connector-java:6.0.4 -> 6.0.5 --- com.google.cloud.sql:jdbc-socket-factory-core:1.0.4 +--- com.google.apis:google-api-services-sqladmin:v1beta4-rev25-1.22.0 | --- com.google.api-client:google-api-client:1.22.0 -> 1.23.0 (*) --- mysql:mysql-connector-java:5.1.38 -> 6.0.5

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

kapt --- org.jetbrains.kotlin:kotlin-annotation-processing-gradle:1.2.20 +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 | --- org.jetbrains:annotations:13.0 --- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.2.20 +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 () +--- org.jetbrains.kotlin:kotlin-script-runtime:1.2.20 --- org.jetbrains.kotlin:kotlin-reflect:1.2.20 --- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 ()

kaptTest --- org.jetbrains.kotlin:kotlin-annotation-processing-gradle:1.2.20 +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 | --- org.jetbrains:annotations:13.0 --- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.2.20 +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 () +--- org.jetbrains.kotlin:kotlin-script-runtime:1.2.20 --- org.jetbrains.kotlin:kotlin-reflect:1.2.20 --- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 ()

providedCompile - Additional compile classpath for libraries that should not be part of the WAR archive. No dependencies

providedRuntime - Additional runtime classpath for libraries that should not be part of the WAR archive. No dependencies

runtime - Runtime dependencies for source set 'main' (deprecated, use 'runtimeOnly ' instead). +--- project :slack-api | +--- com.squareup.retrofit2:retrofit:2.3.0 | | --- com.squareup.okhttp3:okhttp:3.8.0 -> 3.8.1 | | --- com.squareup.okio:okio:1.13.0 | +--- com.squareup.retrofit2:converter-gson:2.3.0 | | +--- com.squareup.retrofit2:retrofit:2.3.0 () | | --- com.google.code.gson:gson:2.7 -> 2.8.1 | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 | | --- com.squareup.okhttp3:okhttp:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.9 | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 | | --- org.jetbrains:annotations:13.0 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.20 | --- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 () +--- project :mailgun | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- project :chatbase | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 () | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- com.google.apis:google-api-services-cloudtasks:v2beta2+ -> v2beta2-rev37-1.23.0 | --- com.google.api-client:google-api-client:1.23.0 | +--- com.google.oauth-client:google-oauth-client:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | --- org.apache.httpcomponents:httpclient:4.0.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | --- com.google.code.findbugs:jsr305:1.3.9 | +--- com.google.http-client:google-http-client-jackson2:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 () | | --- com.fasterxml.jackson.core:jackson-core:2.1.3 -> 2.8.9 | --- com.google.guava:guava-jdk5:17.0 +--- com.google.http-client:google-http-client-appengine:1.23.0 | --- com.google.http-client:google-http-client:1.23.0 () +--- com.google.http-client:google-http-client-jackson:1.23.0 | +--- com.google.http-client:google-http-client:1.23.0 () | --- org.codehaus.jackson:jackson-core-asl:1.9.11 +--- org.springframework.boot:spring-boot-starter: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-context:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE | | | | --- org.springframework:spring-core:4.3.10.RELEASE | | | --- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-expression:4.3.10.RELEASE | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-logging:1.5.6.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.10.RELEASE | --- org.yaml:snakeyaml:1.17 +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.6.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | +--- 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.3 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.9 () | +--- org.springframework:spring-web:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | --- org.springframework:spring-webmvc:4.3.10.RELEASE | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework:spring-beans:4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.10.RELEASE () +--- org.springframework.boot:spring-boot-starter-data-jpa: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-aop:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | --- org.aspectj:aspectjweaver:1.8.10 | +--- org.springframework.boot:spring-boot-starter-jdbc:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.apache.tomcat:tomcat-jdbc:8.5.16 | | | --- org.apache.tomcat:tomcat-juli:8.5.16 | | --- org.springframework:spring-jdbc:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-tx:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.hibernate:hibernate-core:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | +--- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | | +--- antlr:antlr:2.7.7 | | +--- org.jboss:jandex:2.0.0.Final | | +--- dom4j:dom4j:1.6.1 | | --- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final | | --- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | +--- org.hibernate:hibernate-entitymanager:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate:hibernate-core:5.0.12.Final () | | +--- dom4j:dom4j:1.6.1 | | +--- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final () | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | --- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | +--- javax.transaction:javax.transaction-api:1.2 | +--- org.springframework.data:spring-data-jpa:1.11.6.RELEASE | | +--- org.springframework.data:spring-data-commons:1.13.6.RELEASE | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | | +--- org.springframework:spring-orm:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-jdbc:4.3.10.RELEASE () | | | --- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.slf4j:slf4j-api:1.7.25 | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | --- org.springframework:spring-aspects:4.3.10.RELEASE | --- org.aspectj:aspectjweaver:1.8.10 +--- org.springframework.boot:spring-boot-starter-security: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework.security:spring-security-config:4.2.3.RELEASE | | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE | | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | | | --- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework.security:spring-security-web:4.2.3.RELEASE | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.9.RELEASE -> 4.3.10.RELEASE () +--- org.springframework.security:spring-security-jwt:1.0.8.RELEASE | --- org.bouncycastle:bcpkix-jdk15on:1.56 | --- org.bouncycastle:bcprov-jdk15on:1.56 +--- io.jsonwebtoken:jjwt:0.7.0 | --- com.fasterxml.jackson.core:jackson-databind:2.8.2 -> 2.8.9 () +--- io.springfox:springfox-swagger2:2.7.0 | +--- io.swagger:swagger-annotations:1.5.13 | +--- io.swagger:swagger-models:1.5.13 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.5 -> 2.8.0 | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | --- io.swagger:swagger-annotations:1.5.13 | +--- io.springfox:springfox-spi:2.7.0 | | --- io.springfox:springfox-core:2.7.0 | | +--- net.bytebuddy:byte-buddy:1.6.14 | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE | | | +--- org.springframework:spring-beans:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-aop:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | +--- io.springfox:springfox-schema:2.7.0 | | +--- io.springfox:springfox-core:2.7.0 () | | --- io.springfox:springfox-spi:2.7.0 () | +--- io.springfox:springfox-swagger-common:2.7.0 | | +--- io.swagger:swagger-annotations:1.5.13 | | +--- io.swagger:swagger-models:1.5.13 () | | +--- io.springfox:springfox-spi:2.7.0 () | | +--- io.springfox:springfox-schema:2.7.0 () | | +--- io.springfox:springfox-spring-web:2.7.0 | | | +--- org.reflections:reflections:0.9.11 | | | | +--- com.google.guava:guava:20.0 | | | | --- org.javassist:javassist:3.21.0-GA | | | +--- com.google.guava:guava:18.0 -> 20.0 | | | +--- com.fasterxml:classmate:1.3.3 | | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | | | --- io.springfox:springfox-spi:2.7.0 () | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | +--- io.springfox:springfox-spring-web:2.7.0 () | +--- com.google.guava:guava:18.0 -> 20.0 | +--- com.fasterxml:classmate:1.3.3 | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | --- org.mapstruct:mapstruct:1.1.0.Final +--- io.springfox:springfox-swagger-ui:2.7.0 | --- io.springfox:springfox-spring-web:2.7.0 () +--- org.thymeleaf:thymeleaf:3.0.8.RELEASE | +--- ognl:ognl:3.1.12 | | --- org.javassist:javassist:3.20.0-GA -> 3.21.0-GA | +--- org.attoparser:attoparser:2.0.4.RELEASE | +--- org.unbescape:unbescape:1.1.5.RELEASE | --- org.slf4j:slf4j-api:1.7.25 +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- org.springframework.boot:spring-boot-devtools: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE () | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE () +--- com.stripe:stripe-java:5.28.0 | --- com.google.code.gson:gson:2.8.2 -> 2.8.1 +--- com.mailjet:mailjet-client:4.1.1 | +--- com.turbomanage.basic-http-client:http-client-java:0.89 | | +--- com.fasterxml.jackson.core:jackson-core:2.3.2 -> 2.8.9 | | --- com.fasterxml.jackson.core:jackson-databind:2.3.2 -> 2.8.9 () | +--- org.json:json:20140107 | --- junit:junit:4.11 -> 4.12 | --- org.hamcrest:hamcrest-core:1.3 +--- mysql:mysql-connector-java:6.0.5 --- com.google.cloud.sql:mysql-socket-factory-connector-j-6:1.0.4 +--- mysql:mysql-connector-java:6.0.4 -> 6.0.5 --- com.google.cloud.sql:jdbc-socket-factory-core:1.0.4 +--- com.google.apis:google-api-services-sqladmin:v1beta4-rev25-1.22.0 | --- com.google.api-client:google-api-client:1.22.0 -> 1.23.0 (*) --- mysql:mysql-connector-java:5.1.38 -> 6.0.5

runtimeClasspath - Runtime classpath of source set 'main'. +--- project :slack-api | +--- com.squareup.retrofit2:retrofit:2.3.0 | | --- com.squareup.okhttp3:okhttp:3.8.0 -> 3.8.1 | | --- com.squareup.okio:okio:1.13.0 | +--- com.squareup.retrofit2:converter-gson:2.3.0 | | +--- com.squareup.retrofit2:retrofit:2.3.0 () | | --- com.google.code.gson:gson:2.7 -> 2.8.1 | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 | | --- com.squareup.okhttp3:okhttp:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.9 | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 | | --- org.jetbrains:annotations:13.0 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.20 | --- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 () +--- project :mailgun | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- project :chatbase | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 () | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- com.google.apis:google-api-services-cloudtasks:v2beta2+ -> v2beta2-rev37-1.23.0 | --- com.google.api-client:google-api-client:1.23.0 | +--- com.google.oauth-client:google-oauth-client:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | --- org.apache.httpcomponents:httpclient:4.0.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | --- com.google.code.findbugs:jsr305:1.3.9 | +--- com.google.http-client:google-http-client-jackson2:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 () | | --- com.fasterxml.jackson.core:jackson-core:2.1.3 -> 2.8.9 | --- com.google.guava:guava-jdk5:17.0 +--- com.google.http-client:google-http-client-appengine:1.23.0 | --- com.google.http-client:google-http-client:1.23.0 () +--- com.google.http-client:google-http-client-jackson:1.23.0 | +--- com.google.http-client:google-http-client:1.23.0 () | --- org.codehaus.jackson:jackson-core-asl:1.9.11 +--- org.springframework.boot:spring-boot-starter: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-context:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE | | | | --- org.springframework:spring-core:4.3.10.RELEASE | | | --- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-expression:4.3.10.RELEASE | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-logging:1.5.6.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.10.RELEASE | --- org.yaml:snakeyaml:1.17 +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.6.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | +--- 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.3 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.9 () | +--- org.springframework:spring-web:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | --- org.springframework:spring-webmvc:4.3.10.RELEASE | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework:spring-beans:4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.10.RELEASE () +--- org.springframework.boot:spring-boot-starter-data-jpa: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-aop:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | --- org.aspectj:aspectjweaver:1.8.10 | +--- org.springframework.boot:spring-boot-starter-jdbc:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.apache.tomcat:tomcat-jdbc:8.5.16 | | | --- org.apache.tomcat:tomcat-juli:8.5.16 | | --- org.springframework:spring-jdbc:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-tx:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.hibernate:hibernate-core:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | +--- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | | +--- antlr:antlr:2.7.7 | | +--- org.jboss:jandex:2.0.0.Final | | +--- dom4j:dom4j:1.6.1 | | --- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final | | --- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | +--- org.hibernate:hibernate-entitymanager:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate:hibernate-core:5.0.12.Final () | | +--- dom4j:dom4j:1.6.1 | | +--- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final () | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | --- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | +--- javax.transaction:javax.transaction-api:1.2 | +--- org.springframework.data:spring-data-jpa:1.11.6.RELEASE | | +--- org.springframework.data:spring-data-commons:1.13.6.RELEASE | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | | +--- org.springframework:spring-orm:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-jdbc:4.3.10.RELEASE () | | | --- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.slf4j:slf4j-api:1.7.25 | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | --- org.springframework:spring-aspects:4.3.10.RELEASE | --- org.aspectj:aspectjweaver:1.8.10 +--- org.springframework.boot:spring-boot-starter-security: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework.security:spring-security-config:4.2.3.RELEASE | | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE | | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | | | --- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework.security:spring-security-web:4.2.3.RELEASE | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.9.RELEASE -> 4.3.10.RELEASE () +--- org.springframework.security:spring-security-jwt:1.0.8.RELEASE | --- org.bouncycastle:bcpkix-jdk15on:1.56 | --- org.bouncycastle:bcprov-jdk15on:1.56 +--- io.jsonwebtoken:jjwt:0.7.0 | --- com.fasterxml.jackson.core:jackson-databind:2.8.2 -> 2.8.9 () +--- io.springfox:springfox-swagger2:2.7.0 | +--- io.swagger:swagger-annotations:1.5.13 | +--- io.swagger:swagger-models:1.5.13 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.5 -> 2.8.0 | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | --- io.swagger:swagger-annotations:1.5.13 | +--- io.springfox:springfox-spi:2.7.0 | | --- io.springfox:springfox-core:2.7.0 | | +--- net.bytebuddy:byte-buddy:1.6.14 | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE | | | +--- org.springframework:spring-beans:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-aop:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | +--- io.springfox:springfox-schema:2.7.0 | | +--- io.springfox:springfox-core:2.7.0 () | | --- io.springfox:springfox-spi:2.7.0 () | +--- io.springfox:springfox-swagger-common:2.7.0 | | +--- io.swagger:swagger-annotations:1.5.13 | | +--- io.swagger:swagger-models:1.5.13 () | | +--- io.springfox:springfox-spi:2.7.0 () | | +--- io.springfox:springfox-schema:2.7.0 () | | +--- io.springfox:springfox-spring-web:2.7.0 | | | +--- org.reflections:reflections:0.9.11 | | | | +--- com.google.guava:guava:20.0 | | | | --- org.javassist:javassist:3.21.0-GA | | | +--- com.google.guava:guava:18.0 -> 20.0 | | | +--- com.fasterxml:classmate:1.3.3 | | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | | | --- io.springfox:springfox-spi:2.7.0 () | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | +--- io.springfox:springfox-spring-web:2.7.0 () | +--- com.google.guava:guava:18.0 -> 20.0 | +--- com.fasterxml:classmate:1.3.3 | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | --- org.mapstruct:mapstruct:1.1.0.Final +--- io.springfox:springfox-swagger-ui:2.7.0 | --- io.springfox:springfox-spring-web:2.7.0 () +--- org.thymeleaf:thymeleaf:3.0.8.RELEASE | +--- ognl:ognl:3.1.12 | | --- org.javassist:javassist:3.20.0-GA -> 3.21.0-GA | +--- org.attoparser:attoparser:2.0.4.RELEASE | +--- org.unbescape:unbescape:1.1.5.RELEASE | --- org.slf4j:slf4j-api:1.7.25 +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- org.springframework.boot:spring-boot-devtools: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE () | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE () +--- com.stripe:stripe-java:5.28.0 | --- com.google.code.gson:gson:2.8.2 -> 2.8.1 +--- com.mailjet:mailjet-client:4.1.1 | +--- com.turbomanage.basic-http-client:http-client-java:0.89 | | +--- com.fasterxml.jackson.core:jackson-core:2.3.2 -> 2.8.9 | | --- com.fasterxml.jackson.core:jackson-databind:2.3.2 -> 2.8.9 () | +--- org.json:json:20140107 | --- junit:junit:4.11 -> 4.12 | --- org.hamcrest:hamcrest-core:1.3 +--- mysql:mysql-connector-java:6.0.5 --- com.google.cloud.sql:mysql-socket-factory-connector-j-6:1.0.4 +--- mysql:mysql-connector-java:6.0.4 -> 6.0.5 --- com.google.cloud.sql:jdbc-socket-factory-core:1.0.4 +--- com.google.apis:google-api-services-sqladmin:v1beta4-rev25-1.22.0 | --- com.google.api-client:google-api-client:1.22.0 -> 1.23.0 (*) --- mysql:mysql-connector-java:5.1.38 -> 6.0.5

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). +--- project :slack-api | +--- com.squareup.retrofit2:retrofit:2.3.0 | | --- com.squareup.okhttp3:okhttp:3.8.0 -> 3.8.1 | | --- com.squareup.okio:okio:1.13.0 | +--- com.squareup.retrofit2:converter-gson:2.3.0 | | +--- com.squareup.retrofit2:retrofit:2.3.0 () | | --- com.google.code.gson:gson:2.7 -> 2.8.1 | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 | | --- com.squareup.okhttp3:okhttp:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.9 | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 | | --- org.jetbrains:annotations:13.0 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.20 | --- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 () +--- project :mailgun | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- project :chatbase | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 () | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- com.google.apis:google-api-services-cloudtasks:v2beta2+ -> v2beta2-rev37-1.23.0 | --- com.google.api-client:google-api-client:1.23.0 | +--- com.google.oauth-client:google-oauth-client:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | --- org.apache.httpcomponents:httpclient:4.0.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | --- com.google.code.findbugs:jsr305:1.3.9 | +--- com.google.http-client:google-http-client-jackson2:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 () | | --- com.fasterxml.jackson.core:jackson-core:2.1.3 -> 2.8.9 | --- com.google.guava:guava-jdk5:17.0 +--- com.google.http-client:google-http-client-appengine:1.23.0 | --- com.google.http-client:google-http-client:1.23.0 () +--- com.google.http-client:google-http-client-jackson:1.23.0 | +--- com.google.http-client:google-http-client:1.23.0 () | --- org.codehaus.jackson:jackson-core-asl:1.9.11 +--- org.springframework.boot:spring-boot-starter: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-context:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE | | | | --- org.springframework:spring-core:4.3.10.RELEASE | | | --- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-expression:4.3.10.RELEASE | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-logging:1.5.6.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.10.RELEASE | --- org.yaml:snakeyaml:1.17 +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.6.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | +--- 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.3 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.9 () | +--- org.springframework:spring-web:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | --- org.springframework:spring-webmvc:4.3.10.RELEASE | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework:spring-beans:4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.10.RELEASE () +--- org.springframework.boot:spring-boot-starter-data-jpa: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-aop:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | --- org.aspectj:aspectjweaver:1.8.10 | +--- org.springframework.boot:spring-boot-starter-jdbc:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.apache.tomcat:tomcat-jdbc:8.5.16 | | | --- org.apache.tomcat:tomcat-juli:8.5.16 | | --- org.springframework:spring-jdbc:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-tx:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.hibernate:hibernate-core:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | +--- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | | +--- antlr:antlr:2.7.7 | | +--- org.jboss:jandex:2.0.0.Final | | +--- dom4j:dom4j:1.6.1 | | --- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final | | --- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | +--- org.hibernate:hibernate-entitymanager:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate:hibernate-core:5.0.12.Final () | | +--- dom4j:dom4j:1.6.1 | | +--- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final () | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | --- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | +--- javax.transaction:javax.transaction-api:1.2 | +--- org.springframework.data:spring-data-jpa:1.11.6.RELEASE | | +--- org.springframework.data:spring-data-commons:1.13.6.RELEASE | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | | +--- org.springframework:spring-orm:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-jdbc:4.3.10.RELEASE () | | | --- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.slf4j:slf4j-api:1.7.25 | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | --- org.springframework:spring-aspects:4.3.10.RELEASE | --- org.aspectj:aspectjweaver:1.8.10 +--- org.springframework.boot:spring-boot-starter-security: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework.security:spring-security-config:4.2.3.RELEASE | | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE | | | +--- aopalliance:aopalliance:1.0 | | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | | | --- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework.security:spring-security-web:4.2.3.RELEASE | +--- aopalliance:aopalliance:1.0 | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.9.RELEASE -> 4.3.10.RELEASE () +--- org.springframework.security:spring-security-jwt:1.0.8.RELEASE | --- org.bouncycastle:bcpkix-jdk15on:1.56 | --- org.bouncycastle:bcprov-jdk15on:1.56 +--- io.jsonwebtoken:jjwt:0.7.0 | --- com.fasterxml.jackson.core:jackson-databind:2.8.2 -> 2.8.9 () +--- io.springfox:springfox-swagger2:2.7.0 | +--- io.swagger:swagger-annotations:1.5.13 | +--- io.swagger:swagger-models:1.5.13 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.5 -> 2.8.0 | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | --- io.swagger:swagger-annotations:1.5.13 | +--- io.springfox:springfox-spi:2.7.0 | | --- io.springfox:springfox-core:2.7.0 | | +--- net.bytebuddy:byte-buddy:1.6.14 | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE | | | +--- org.springframework:spring-beans:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-aop:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | +--- io.springfox:springfox-schema:2.7.0 | | +--- io.springfox:springfox-core:2.7.0 () | | --- io.springfox:springfox-spi:2.7.0 () | +--- io.springfox:springfox-swagger-common:2.7.0 | | +--- io.swagger:swagger-annotations:1.5.13 | | +--- io.swagger:swagger-models:1.5.13 () | | +--- io.springfox:springfox-spi:2.7.0 () | | +--- io.springfox:springfox-schema:2.7.0 () | | +--- io.springfox:springfox-spring-web:2.7.0 | | | +--- org.reflections:reflections:0.9.11 | | | | +--- com.google.guava:guava:20.0 | | | | --- org.javassist:javassist:3.21.0-GA | | | +--- com.google.guava:guava:18.0 -> 20.0 | | | +--- com.fasterxml:classmate:1.3.3 | | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | | | --- io.springfox:springfox-spi:2.7.0 () | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | +--- io.springfox:springfox-spring-web:2.7.0 () | +--- com.google.guava:guava:18.0 -> 20.0 | +--- com.fasterxml:classmate:1.3.3 | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | --- org.mapstruct:mapstruct:1.1.0.Final +--- io.springfox:springfox-swagger-ui:2.7.0 | --- io.springfox:springfox-spring-web:2.7.0 () +--- org.thymeleaf:thymeleaf:3.0.8.RELEASE | +--- ognl:ognl:3.1.12 | | --- org.javassist:javassist:3.20.0-GA -> 3.21.0-GA | +--- org.attoparser:attoparser:2.0.4.RELEASE | +--- org.unbescape:unbescape:1.1.5.RELEASE | --- org.slf4j:slf4j-api:1.7.25 +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- org.springframework.boot:spring-boot-devtools: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE () | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE () +--- com.stripe:stripe-java:5.28.0 | --- com.google.code.gson:gson:2.8.2 -> 2.8.1 +--- com.mailjet:mailjet-client:4.1.1 | +--- com.turbomanage.basic-http-client:http-client-java:0.89 | | +--- com.fasterxml.jackson.core:jackson-core:2.3.2 -> 2.8.9 | | --- com.fasterxml.jackson.core:jackson-databind:2.3.2 -> 2.8.9 () | +--- org.json:json:20140107 | --- junit:junit:4.11 -> 4.12 | --- org.hamcrest:hamcrest-core:1.3 +--- org.springframework.boot:spring-boot-starter-test: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-test:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-test-autoconfigure:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-test:1.5.6.RELEASE () | | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.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 | | --- org.slf4j:slf4j-api:1.7.16 -> 1.7.25 | +--- junit:junit:4.12 () | +--- 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.10.RELEASE | --- org.springframework:spring-test:4.3.10.RELEASE | --- org.springframework:spring-core:4.3.10.RELEASE +--- org.springframework.security:spring-security-test: -> 4.2.3.RELEASE | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework.security:spring-security-web:4.2.3.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework:spring-test:4.3.9.RELEASE -> 4.3.10.RELEASE (*) --- com.h2database:h2:1.4.196

testCompileClasspath - Compile classpath for source set 'test'. +--- project :slack-api | +--- com.squareup.retrofit2:retrofit:2.3.0 | | --- com.squareup.okhttp3:okhttp:3.8.0 -> 3.8.1 | | --- com.squareup.okio:okio:1.13.0 | +--- com.squareup.retrofit2:converter-gson:2.3.0 | | +--- com.squareup.retrofit2:retrofit:2.3.0 () | | --- com.google.code.gson:gson:2.7 -> 2.8.1 | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 | | --- com.squareup.okhttp3:okhttp:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.9 | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 | | --- org.jetbrains:annotations:13.0 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.20 | --- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 () +--- project :mailgun | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- project :chatbase | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 () | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- com.google.apis:google-api-services-cloudtasks:v2beta2+ -> v2beta2-rev37-1.23.0 | --- com.google.api-client:google-api-client:1.23.0 | +--- com.google.oauth-client:google-oauth-client:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | --- org.apache.httpcomponents:httpclient:4.0.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | --- com.google.code.findbugs:jsr305:1.3.9 | +--- com.google.http-client:google-http-client-jackson2:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 () | | --- com.fasterxml.jackson.core:jackson-core:2.1.3 -> 2.8.9 | --- com.google.guava:guava-jdk5:17.0 +--- com.google.http-client:google-http-client-appengine:1.23.0 | --- com.google.http-client:google-http-client:1.23.0 () +--- com.google.http-client:google-http-client-jackson:1.23.0 | +--- com.google.http-client:google-http-client:1.23.0 () | --- org.codehaus.jackson:jackson-core-asl:1.9.11 +--- org.springframework.boot:spring-boot-starter: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-context:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE | | | | --- org.springframework:spring-core:4.3.10.RELEASE | | | --- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-expression:4.3.10.RELEASE | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-logging:1.5.6.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.10.RELEASE | --- org.yaml:snakeyaml:1.17 +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.6.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | +--- 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.3 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.9 () | +--- org.springframework:spring-web:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | --- org.springframework:spring-webmvc:4.3.10.RELEASE | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework:spring-beans:4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.10.RELEASE () +--- org.springframework.boot:spring-boot-starter-data-jpa: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-aop:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | --- org.aspectj:aspectjweaver:1.8.10 | +--- org.springframework.boot:spring-boot-starter-jdbc:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.apache.tomcat:tomcat-jdbc:8.5.16 | | | --- org.apache.tomcat:tomcat-juli:8.5.16 | | --- org.springframework:spring-jdbc:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-tx:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.hibernate:hibernate-core:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | +--- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | | +--- antlr:antlr:2.7.7 | | +--- org.jboss:jandex:2.0.0.Final | | +--- dom4j:dom4j:1.6.1 | | --- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final | | --- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | +--- org.hibernate:hibernate-entitymanager:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate:hibernate-core:5.0.12.Final () | | +--- dom4j:dom4j:1.6.1 | | +--- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final () | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | --- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | +--- javax.transaction:javax.transaction-api:1.2 | +--- org.springframework.data:spring-data-jpa:1.11.6.RELEASE | | +--- org.springframework.data:spring-data-commons:1.13.6.RELEASE | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | | +--- org.springframework:spring-orm:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-jdbc:4.3.10.RELEASE () | | | --- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.slf4j:slf4j-api:1.7.25 | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | --- org.springframework:spring-aspects:4.3.10.RELEASE | --- org.aspectj:aspectjweaver:1.8.10 +--- org.springframework.boot:spring-boot-starter-security: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework.security:spring-security-config:4.2.3.RELEASE | | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE | | | +--- aopalliance:aopalliance:1.0 | | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | | | --- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework.security:spring-security-web:4.2.3.RELEASE | +--- aopalliance:aopalliance:1.0 | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.9.RELEASE -> 4.3.10.RELEASE () +--- org.springframework.security:spring-security-jwt:1.0.8.RELEASE | --- org.bouncycastle:bcpkix-jdk15on:1.56 | --- org.bouncycastle:bcprov-jdk15on:1.56 +--- io.jsonwebtoken:jjwt:0.7.0 | --- com.fasterxml.jackson.core:jackson-databind:2.8.2 -> 2.8.9 () +--- io.springfox:springfox-swagger2:2.7.0 | +--- io.swagger:swagger-annotations:1.5.13 | +--- io.swagger:swagger-models:1.5.13 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.5 -> 2.8.0 | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | --- io.swagger:swagger-annotations:1.5.13 | +--- io.springfox:springfox-spi:2.7.0 | | --- io.springfox:springfox-core:2.7.0 | | +--- net.bytebuddy:byte-buddy:1.6.14 | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE | | | +--- org.springframework:spring-beans:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-aop:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | +--- io.springfox:springfox-schema:2.7.0 | | +--- io.springfox:springfox-core:2.7.0 () | | --- io.springfox:springfox-spi:2.7.0 () | +--- io.springfox:springfox-swagger-common:2.7.0 | | +--- io.swagger:swagger-annotations:1.5.13 | | +--- io.swagger:swagger-models:1.5.13 () | | +--- io.springfox:springfox-spi:2.7.0 () | | +--- io.springfox:springfox-schema:2.7.0 () | | +--- io.springfox:springfox-spring-web:2.7.0 | | | +--- org.reflections:reflections:0.9.11 | | | | +--- com.google.guava:guava:20.0 | | | | --- org.javassist:javassist:3.21.0-GA | | | +--- com.google.guava:guava:18.0 -> 20.0 | | | +--- com.fasterxml:classmate:1.3.3 | | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | | | --- io.springfox:springfox-spi:2.7.0 () | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | +--- io.springfox:springfox-spring-web:2.7.0 () | +--- com.google.guava:guava:18.0 -> 20.0 | +--- com.fasterxml:classmate:1.3.3 | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | --- org.mapstruct:mapstruct:1.1.0.Final +--- io.springfox:springfox-swagger-ui:2.7.0 | --- io.springfox:springfox-spring-web:2.7.0 () +--- org.thymeleaf:thymeleaf:3.0.8.RELEASE | +--- ognl:ognl:3.1.12 | | --- org.javassist:javassist:3.20.0-GA -> 3.21.0-GA | +--- org.attoparser:attoparser:2.0.4.RELEASE | +--- org.unbescape:unbescape:1.1.5.RELEASE | --- org.slf4j:slf4j-api:1.7.25 +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- org.springframework.boot:spring-boot-devtools: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE () | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE () +--- com.stripe:stripe-java:5.28.0 | --- com.google.code.gson:gson:2.8.2 -> 2.8.1 +--- com.mailjet:mailjet-client:4.1.1 | +--- com.turbomanage.basic-http-client:http-client-java:0.89 | | +--- com.fasterxml.jackson.core:jackson-core:2.3.2 -> 2.8.9 | | --- com.fasterxml.jackson.core:jackson-databind:2.3.2 -> 2.8.9 () | +--- org.json:json:20140107 | --- junit:junit:4.11 -> 4.12 | --- org.hamcrest:hamcrest-core:1.3 +--- org.springframework.boot:spring-boot-starter-test: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-test:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-test-autoconfigure:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-test:1.5.6.RELEASE () | | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.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 | | --- org.slf4j:slf4j-api:1.7.16 -> 1.7.25 | +--- junit:junit:4.12 () | +--- 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.10.RELEASE | --- org.springframework:spring-test:4.3.10.RELEASE | --- org.springframework:spring-core:4.3.10.RELEASE +--- org.springframework.security:spring-security-test: -> 4.2.3.RELEASE | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework.security:spring-security-web:4.2.3.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework:spring-test:4.3.9.RELEASE -> 4.3.10.RELEASE (*) --- com.h2database:h2:1.4.196

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). +--- project :slack-api | +--- com.squareup.retrofit2:retrofit:2.3.0 | | --- com.squareup.okhttp3:okhttp:3.8.0 -> 3.8.1 | | --- com.squareup.okio:okio:1.13.0 | +--- com.squareup.retrofit2:converter-gson:2.3.0 | | +--- com.squareup.retrofit2:retrofit:2.3.0 () | | --- com.google.code.gson:gson:2.7 -> 2.8.1 | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 | | --- com.squareup.okhttp3:okhttp:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.9 | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 | | --- org.jetbrains:annotations:13.0 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.20 | --- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 () +--- project :mailgun | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- project :chatbase | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 () | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- com.google.apis:google-api-services-cloudtasks:v2beta2+ -> v2beta2-rev37-1.23.0 | --- com.google.api-client:google-api-client:1.23.0 | +--- com.google.oauth-client:google-oauth-client:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | --- org.apache.httpcomponents:httpclient:4.0.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | --- com.google.code.findbugs:jsr305:1.3.9 | +--- com.google.http-client:google-http-client-jackson2:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 () | | --- com.fasterxml.jackson.core:jackson-core:2.1.3 -> 2.8.9 | --- com.google.guava:guava-jdk5:17.0 +--- com.google.http-client:google-http-client-appengine:1.23.0 | --- com.google.http-client:google-http-client:1.23.0 () +--- com.google.http-client:google-http-client-jackson:1.23.0 | +--- com.google.http-client:google-http-client:1.23.0 () | --- org.codehaus.jackson:jackson-core-asl:1.9.11 +--- org.springframework.boot:spring-boot-starter: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-context:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE | | | | --- org.springframework:spring-core:4.3.10.RELEASE | | | --- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-expression:4.3.10.RELEASE | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-logging:1.5.6.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.10.RELEASE | --- org.yaml:snakeyaml:1.17 +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.6.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | +--- 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.3 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.9 () | +--- org.springframework:spring-web:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | --- org.springframework:spring-webmvc:4.3.10.RELEASE | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework:spring-beans:4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.10.RELEASE () +--- org.springframework.boot:spring-boot-starter-data-jpa: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-aop:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | --- org.aspectj:aspectjweaver:1.8.10 | +--- org.springframework.boot:spring-boot-starter-jdbc:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.apache.tomcat:tomcat-jdbc:8.5.16 | | | --- org.apache.tomcat:tomcat-juli:8.5.16 | | --- org.springframework:spring-jdbc:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-tx:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.hibernate:hibernate-core:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | +--- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | | +--- antlr:antlr:2.7.7 | | +--- org.jboss:jandex:2.0.0.Final | | +--- dom4j:dom4j:1.6.1 | | --- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final | | --- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | +--- org.hibernate:hibernate-entitymanager:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate:hibernate-core:5.0.12.Final () | | +--- dom4j:dom4j:1.6.1 | | +--- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final () | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | --- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | +--- javax.transaction:javax.transaction-api:1.2 | +--- org.springframework.data:spring-data-jpa:1.11.6.RELEASE | | +--- org.springframework.data:spring-data-commons:1.13.6.RELEASE | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | | +--- org.springframework:spring-orm:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-jdbc:4.3.10.RELEASE () | | | --- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.slf4j:slf4j-api:1.7.25 | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | --- org.springframework:spring-aspects:4.3.10.RELEASE | --- org.aspectj:aspectjweaver:1.8.10 +--- org.springframework.boot:spring-boot-starter-security: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework.security:spring-security-config:4.2.3.RELEASE | | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE | | | +--- aopalliance:aopalliance:1.0 | | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | | | --- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework.security:spring-security-web:4.2.3.RELEASE | +--- aopalliance:aopalliance:1.0 | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.9.RELEASE -> 4.3.10.RELEASE () +--- org.springframework.security:spring-security-jwt:1.0.8.RELEASE | --- org.bouncycastle:bcpkix-jdk15on:1.56 | --- org.bouncycastle:bcprov-jdk15on:1.56 +--- io.jsonwebtoken:jjwt:0.7.0 | --- com.fasterxml.jackson.core:jackson-databind:2.8.2 -> 2.8.9 () +--- io.springfox:springfox-swagger2:2.7.0 | +--- io.swagger:swagger-annotations:1.5.13 | +--- io.swagger:swagger-models:1.5.13 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.5 -> 2.8.0 | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | --- io.swagger:swagger-annotations:1.5.13 | +--- io.springfox:springfox-spi:2.7.0 | | --- io.springfox:springfox-core:2.7.0 | | +--- net.bytebuddy:byte-buddy:1.6.14 | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE | | | +--- org.springframework:spring-beans:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-aop:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | +--- io.springfox:springfox-schema:2.7.0 | | +--- io.springfox:springfox-core:2.7.0 () | | --- io.springfox:springfox-spi:2.7.0 () | +--- io.springfox:springfox-swagger-common:2.7.0 | | +--- io.swagger:swagger-annotations:1.5.13 | | +--- io.swagger:swagger-models:1.5.13 () | | +--- io.springfox:springfox-spi:2.7.0 () | | +--- io.springfox:springfox-schema:2.7.0 () | | +--- io.springfox:springfox-spring-web:2.7.0 | | | +--- org.reflections:reflections:0.9.11 | | | | +--- com.google.guava:guava:20.0 | | | | --- org.javassist:javassist:3.21.0-GA | | | +--- com.google.guava:guava:18.0 -> 20.0 | | | +--- com.fasterxml:classmate:1.3.3 | | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | | | --- io.springfox:springfox-spi:2.7.0 () | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | +--- io.springfox:springfox-spring-web:2.7.0 () | +--- com.google.guava:guava:18.0 -> 20.0 | +--- com.fasterxml:classmate:1.3.3 | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | --- org.mapstruct:mapstruct:1.1.0.Final +--- io.springfox:springfox-swagger-ui:2.7.0 | --- io.springfox:springfox-spring-web:2.7.0 () +--- org.thymeleaf:thymeleaf:3.0.8.RELEASE | +--- ognl:ognl:3.1.12 | | --- org.javassist:javassist:3.20.0-GA -> 3.21.0-GA | +--- org.attoparser:attoparser:2.0.4.RELEASE | +--- org.unbescape:unbescape:1.1.5.RELEASE | --- org.slf4j:slf4j-api:1.7.25 +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- org.springframework.boot:spring-boot-devtools: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE () | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE () +--- com.stripe:stripe-java:5.28.0 | --- com.google.code.gson:gson:2.8.2 -> 2.8.1 +--- com.mailjet:mailjet-client:4.1.1 | +--- com.turbomanage.basic-http-client:http-client-java:0.89 | | +--- com.fasterxml.jackson.core:jackson-core:2.3.2 -> 2.8.9 | | --- com.fasterxml.jackson.core:jackson-databind:2.3.2 -> 2.8.9 () | +--- org.json:json:20140107 | --- junit:junit:4.11 -> 4.12 | --- org.hamcrest:hamcrest-core:1.3 +--- mysql:mysql-connector-java:6.0.5 +--- com.google.cloud.sql:mysql-socket-factory-connector-j-6:1.0.4 | +--- mysql:mysql-connector-java:6.0.4 -> 6.0.5 | --- com.google.cloud.sql:jdbc-socket-factory-core:1.0.4 | +--- com.google.apis:google-api-services-sqladmin:v1beta4-rev25-1.22.0 | | --- com.google.api-client:google-api-client:1.22.0 -> 1.23.0 () | --- mysql:mysql-connector-java:5.1.38 -> 6.0.5 +--- org.springframework.boot:spring-boot-starter-test: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-test:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-test-autoconfigure:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-test:1.5.6.RELEASE () | | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.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 | | --- org.slf4j:slf4j-api:1.7.16 -> 1.7.25 | +--- junit:junit:4.12 () | +--- 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.10.RELEASE | --- org.springframework:spring-test:4.3.10.RELEASE | --- org.springframework:spring-core:4.3.10.RELEASE +--- org.springframework.security:spring-security-test: -> 4.2.3.RELEASE | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework.security:spring-security-web:4.2.3.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework:spring-test:4.3.9.RELEASE -> 4.3.10.RELEASE () --- com.h2database:h2:1.4.196

testRuntimeClasspath - Runtime classpath of source set 'test'. +--- project :slack-api | +--- com.squareup.retrofit2:retrofit:2.3.0 | | --- com.squareup.okhttp3:okhttp:3.8.0 -> 3.8.1 | | --- com.squareup.okio:okio:1.13.0 | +--- com.squareup.retrofit2:converter-gson:2.3.0 | | +--- com.squareup.retrofit2:retrofit:2.3.0 () | | --- com.google.code.gson:gson:2.7 -> 2.8.1 | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 | | --- com.squareup.okhttp3:okhttp:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 | | --- com.fasterxml.jackson.core:jackson-core:2.8.9 | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 | | --- org.jetbrains:annotations:13.0 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.20 | --- org.jetbrains.kotlin:kotlin-stdlib:1.2.20 () +--- project :mailgun | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- project :chatbase | +--- com.squareup.retrofit2:retrofit:2.3.0 () | +--- com.squareup.retrofit2:converter-gson:2.3.0 () | +--- com.squareup.okhttp3:logging-interceptor:3.8.1 () | +--- com.fasterxml.jackson.core:jackson-databind:2.9.0 -> 2.8.9 () | +--- org.projectlombok:lombok:1.16.14 -> 1.16.18 | --- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- com.google.apis:google-api-services-cloudtasks:v2beta2+ -> v2beta2-rev37-1.23.0 | --- com.google.api-client:google-api-client:1.23.0 | +--- com.google.oauth-client:google-oauth-client:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 | | | +--- com.google.code.findbugs:jsr305:1.3.9 | | | --- org.apache.httpcomponents:httpclient:4.0.1 -> 4.5.3 | | | +--- org.apache.httpcomponents:httpcore:4.4.6 | | | --- commons-codec:commons-codec:1.9 -> 1.10 | | --- com.google.code.findbugs:jsr305:1.3.9 | +--- com.google.http-client:google-http-client-jackson2:1.23.0 | | +--- com.google.http-client:google-http-client:1.23.0 () | | --- com.fasterxml.jackson.core:jackson-core:2.1.3 -> 2.8.9 | --- com.google.guava:guava-jdk5:17.0 +--- com.google.http-client:google-http-client-appengine:1.23.0 | --- com.google.http-client:google-http-client:1.23.0 () +--- com.google.http-client:google-http-client-jackson:1.23.0 | +--- com.google.http-client:google-http-client:1.23.0 () | --- org.codehaus.jackson:jackson-core-asl:1.9.11 +--- org.springframework.boot:spring-boot-starter: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-context:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE | | | | --- org.springframework:spring-core:4.3.10.RELEASE | | | --- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-expression:4.3.10.RELEASE | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-logging:1.5.6.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.10.RELEASE | --- org.yaml:snakeyaml:1.17 +--- org.springframework.boot:spring-boot-starter-web: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.6.RELEASE | | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.16 | | --- org.apache.tomcat.embed:tomcat-embed-core:8.5.16 | +--- 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.3 | +--- com.fasterxml.jackson.core:jackson-databind:2.8.9 () | +--- org.springframework:spring-web:4.3.10.RELEASE | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | --- org.springframework:spring-webmvc:4.3.10.RELEASE | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework:spring-beans:4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.10.RELEASE () +--- org.springframework.boot:spring-boot-starter-data-jpa: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-starter-aop:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | --- org.aspectj:aspectjweaver:1.8.10 | +--- org.springframework.boot:spring-boot-starter-jdbc:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | | +--- org.apache.tomcat:tomcat-jdbc:8.5.16 | | | --- org.apache.tomcat:tomcat-juli:8.5.16 | | --- org.springframework:spring-jdbc:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | --- org.springframework:spring-tx:4.3.10.RELEASE | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.10.RELEASE | +--- org.hibernate:hibernate-core:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | +--- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | | +--- antlr:antlr:2.7.7 | | +--- org.jboss:jandex:2.0.0.Final | | +--- dom4j:dom4j:1.6.1 | | --- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final | | --- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | +--- org.hibernate:hibernate-entitymanager:5.0.12.Final | | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final | | +--- org.hibernate:hibernate-core:5.0.12.Final () | | +--- dom4j:dom4j:1.6.1 | | +--- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final () | | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final | | --- org.javassist:javassist:3.18.1-GA -> 3.21.0-GA | +--- javax.transaction:javax.transaction-api:1.2 | +--- org.springframework.data:spring-data-jpa:1.11.6.RELEASE | | +--- org.springframework.data:spring-data-commons:1.13.6.RELEASE | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.slf4j:slf4j-api:1.7.25 | | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | | +--- org.springframework:spring-orm:4.3.10.RELEASE | | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.10.RELEASE | | | +--- org.springframework:spring-jdbc:4.3.10.RELEASE () | | | --- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.10.RELEASE () | | +--- org.springframework:spring-tx:4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.10.RELEASE () | | +--- org.springframework:spring-core:4.3.10.RELEASE | | +--- org.slf4j:slf4j-api:1.7.25 | | --- org.slf4j:jcl-over-slf4j:1.7.25 () | --- org.springframework:spring-aspects:4.3.10.RELEASE | --- org.aspectj:aspectjweaver:1.8.10 +--- org.springframework.boot:spring-boot-starter-security: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-starter:1.5.6.RELEASE () | +--- org.springframework:spring-aop:4.3.10.RELEASE () | +--- org.springframework.security:spring-security-config:4.2.3.RELEASE | | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE | | | +--- aopalliance:aopalliance:1.0 | | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | | | --- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | | --- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework.security:spring-security-web:4.2.3.RELEASE | +--- aopalliance:aopalliance:1.0 | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.10.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | +--- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.10.RELEASE () | --- org.springframework:spring-web:4.3.9.RELEASE -> 4.3.10.RELEASE () +--- org.springframework.security:spring-security-jwt:1.0.8.RELEASE | --- org.bouncycastle:bcpkix-jdk15on:1.56 | --- org.bouncycastle:bcprov-jdk15on:1.56 +--- io.jsonwebtoken:jjwt:0.7.0 | --- com.fasterxml.jackson.core:jackson-databind:2.8.2 -> 2.8.9 () +--- io.springfox:springfox-swagger2:2.7.0 | +--- io.swagger:swagger-annotations:1.5.13 | +--- io.swagger:swagger-models:1.5.13 | | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.5 -> 2.8.0 | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.25 | | --- io.swagger:swagger-annotations:1.5.13 | +--- io.springfox:springfox-spi:2.7.0 | | --- io.springfox:springfox-core:2.7.0 | | +--- net.bytebuddy:byte-buddy:1.6.14 | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE | | | +--- org.springframework:spring-beans:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-context:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | +--- org.springframework:spring-aop:4.0.9.RELEASE -> 4.3.10.RELEASE () | | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.slf4j:slf4j-api:1.7.10 -> 1.7.25 | +--- io.springfox:springfox-schema:2.7.0 | | +--- io.springfox:springfox-core:2.7.0 () | | --- io.springfox:springfox-spi:2.7.0 () | +--- io.springfox:springfox-swagger-common:2.7.0 | | +--- io.swagger:swagger-annotations:1.5.13 | | +--- io.swagger:swagger-models:1.5.13 () | | +--- io.springfox:springfox-spi:2.7.0 () | | +--- io.springfox:springfox-schema:2.7.0 () | | +--- io.springfox:springfox-spring-web:2.7.0 | | | +--- org.reflections:reflections:0.9.11 | | | | +--- com.google.guava:guava:20.0 | | | | --- org.javassist:javassist:3.21.0-GA | | | +--- com.google.guava:guava:18.0 -> 20.0 | | | +--- com.fasterxml:classmate:1.3.3 | | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | | | --- io.springfox:springfox-spi:2.7.0 () | | +--- com.google.guava:guava:18.0 -> 20.0 | | +--- com.fasterxml:classmate:1.3.3 | | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | | --- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | +--- io.springfox:springfox-spring-web:2.7.0 () | +--- com.google.guava:guava:18.0 -> 20.0 | +--- com.fasterxml:classmate:1.3.3 | +--- org.slf4j:slf4j-api:1.7.24 -> 1.7.25 | +--- org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE () | +--- org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE () | --- org.mapstruct:mapstruct:1.1.0.Final +--- io.springfox:springfox-swagger-ui:2.7.0 | --- io.springfox:springfox-spring-web:2.7.0 () +--- org.thymeleaf:thymeleaf:3.0.8.RELEASE | +--- ognl:ognl:3.1.12 | | --- org.javassist:javassist:3.20.0-GA -> 3.21.0-GA | +--- org.attoparser:attoparser:2.0.4.RELEASE | +--- org.unbescape:unbescape:1.1.5.RELEASE | --- org.slf4j:slf4j-api:1.7.25 +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.20 () +--- org.springframework.boot:spring-boot-devtools: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot:1.5.6.RELEASE () | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.RELEASE () +--- com.stripe:stripe-java:5.28.0 | --- com.google.code.gson:gson:2.8.2 -> 2.8.1 +--- com.mailjet:mailjet-client:4.1.1 | +--- com.turbomanage.basic-http-client:http-client-java:0.89 | | +--- com.fasterxml.jackson.core:jackson-core:2.3.2 -> 2.8.9 | | --- com.fasterxml.jackson.core:jackson-databind:2.3.2 -> 2.8.9 () | +--- org.json:json:20140107 | --- junit:junit:4.11 -> 4.12 | --- org.hamcrest:hamcrest-core:1.3 +--- mysql:mysql-connector-java:6.0.5 +--- com.google.cloud.sql:mysql-socket-factory-connector-j-6:1.0.4 | +--- mysql:mysql-connector-java:6.0.4 -> 6.0.5 | --- com.google.cloud.sql:jdbc-socket-factory-core:1.0.4 | +--- com.google.apis:google-api-services-sqladmin:v1beta4-rev25-1.22.0 | | --- com.google.api-client:google-api-client:1.22.0 -> 1.23.0 () | --- mysql:mysql-connector-java:5.1.38 -> 6.0.5 +--- org.springframework.boot:spring-boot-starter-test: -> 1.5.6.RELEASE | +--- org.springframework.boot:spring-boot-test:1.5.6.RELEASE | | --- org.springframework.boot:spring-boot:1.5.6.RELEASE () | +--- org.springframework.boot:spring-boot-test-autoconfigure:1.5.6.RELEASE | | +--- org.springframework.boot:spring-boot-test:1.5.6.RELEASE () | | --- org.springframework.boot:spring-boot-autoconfigure:1.5.6.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 | | --- org.slf4j:slf4j-api:1.7.16 -> 1.7.25 | +--- junit:junit:4.12 () | +--- 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.10.RELEASE | --- org.springframework:spring-test:4.3.10.RELEASE | --- org.springframework:spring-core:4.3.10.RELEASE +--- org.springframework.security:spring-security-test: -> 4.2.3.RELEASE | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE () | +--- org.springframework.security:spring-security-web:4.2.3.RELEASE () | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.10.RELEASE | --- org.springframework:spring-test:4.3.9.RELEASE -> 4.3.10.RELEASE () --- com.h2database:h2:1.4.196

testRuntimeOnly - Runtime only dependencies for source set 'test'. (n) No dependencies

(*) - dependencies omitted (listed previously)

BUILD SUCCESSFUL

Total time: 41.63 secs `

baole commented 6 years ago

@meltsufin @saturnism The attachment is a sample app that has the same issue with my production app. It works fine with gradlew bootRun, also no issue with deployment command gradlew appengineDeploy. Once deployed on AppEngine Flex cloud, it said following message

Error 404 - Not Found. No context on this server matched or handled this request. Contexts known to this server are: / ---> o.e.j.w.WebAppContext@7e0b0338{/,[file:///var/lib/jetty/webapps/root/, jar:file:///var/lib/jetty/webapps/root/WEB-INF/lib/springfox-swagger-ui-2.7.0.jar!/META-INF/resources],UNAVAILABLE}{/root.war} [failed] Powered by Jetty:// 9.4.8.v20171121

This is the simplified version of my production app.

sample.zip

I really appreciate your helps

baole commented 6 years ago

I migrated the app to Spring Boot 2.0.0 and still have the same issue. The logs said it fails to load logger classes when Spring starts the app.

java.util.ServiceConfigurationError: org.apache.juli.logging.Log: Provider org.eclipse.jetty.apache.jsp.JuliLog not a subtype at java.util.ServiceLoader.fail(ServiceLoader.java:239) at java.util.ServiceLoader.access$300(ServiceLoader.java:185) at java.util.ServiceLoader$LazyIterator.nextService(ServiceLoader.java:376) at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:404) at java.util.ServiceLoader$1.next(ServiceLoader.java:480) at org.apache.juli.logging.LogFactory.<init>(LogFactory.java:78) at org.apache.juli.logging.LogFactory.<clinit>(LogFactory.java:66) at org.apache.tomcat.websocket.WsWebSocketContainer.<init>(WsWebSocketContainer.java:90) at org.apache.tomcat.websocket.server.WsServerContainer.<init>(WsServerContainer.java:87) at org.apache.tomcat.websocket.server.WsSci.init(WsSci.java:131) at org.apache.tomcat.websocket.server.WsSci.onStartup(WsSci.java:47) at

baole commented 6 years ago

@meltsufin did you have a chance to check my sample code?

meltsufin commented 6 years ago

@gregw @ChengyuanZhao please take a look if you have a chance.

joakime commented 6 years ago

The error ...

java.util.ServiceConfigurationError: org.apache.juli.logging.Log: Provider org.eclipse.jetty.apache.jsp.JuliLog not a subtype
 at java.util.ServiceLoader.fail(ServiceLoader.java:239)
 at java.util.ServiceLoader.access$300(ServiceLoader.java:185)
 at java.util.ServiceLoader$LazyIterator.nextService(ServiceLoader.java:376)
 at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:404)
 at java.util.ServiceLoader$1.next(ServiceLoader.java:480)
 at org.apache.juli.logging.LogFactory.<init>(LogFactory.java:78)
 at org.apache.juli.logging.LogFactory.<clinit>(LogFactory.java:66)
 at org.apache.tomcat.websocket.WsWebSocketContainer.<init>(WsWebSocketContainer.java:90)
 at org.apache.tomcat.websocket.server.WsServerContainer.<init>(WsServerContainer.java:87)
 at org.apache.tomcat.websocket.server.WsSci.init(WsSci.java:131)
 at org.apache.tomcat.websocket.server.WsSci.onStartup(WsSci.java:47) at

Is because Jetty and Tomcat are being mixed.

A Tomcat WebSocket Init is seeing Jetty replacement components for juli (which is present in the Jetty JSP libraries)

zhumin8 commented 2 years ago

Closing as part of cleanup. Please re-open if it's still relevant