spring-projects / spring-boot

Spring Boot
https://spring.io/projects/spring-boot
Apache License 2.0
74.66k stars 40.57k forks source link

Spring Boot reference documentation - Build failure #5633

Closed daveyahoo closed 8 years ago

daveyahoo commented 8 years ago

I am following the instructions under "Building reference documentation" in the README of the "Master" branch at: https://github.com/spring-projects/spring-boot

Having cloned the source repository, I run the first Maven command: $ ./mvnw clean install -pl spring-boot-tools/spring-boot-maven-plugin -Pdefault,full This succeeds.

Then I try the second Maven command: $ ./mvnw clean install -pl spring-boot-docs -Pdefault,full This eventually fails with the following error:

[INFO] --- maven-dependency-plugin:2.10:unpack (unpack-starter-poms) @ spring-boot-docs ---
[INFO] Configured Artifact: org.springframework.boot:spring-boot-starters:starter-poms:1.4.0.BUILD-SNAPSHOT:zip
Downloading: http://repo.spring.io/snapshot/org/springframework/boot/spring-boot-starters/1.4.0.BUILD-SNAPSHOT/spring-boot-starters-1.4.0.BUILD-SNAPSHOT-starter-poms.zip
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 08:28 min
[INFO] Finished at: 2016-04-08T13:15:14+10:00
[INFO] Final Memory: 55M/278M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.10:unpack (unpack-starter-poms) on project spring-boot-docs: Unable to find artifact. Could not find artifact org.springframework.boot:spring-boot-starters:zip:starter-poms:1.4.0.BUILD-SNAPSHOT in spring-snapshots (http://repo.spring.io/snapshot)
[ERROR]
[ERROR] Try downloading the file manually from the project website.
[ERROR]
[ERROR] Then, install it using the command:
[ERROR] mvn install:install-file -DgroupId=org.springframework.boot -DartifactId=spring-boot-starters -Dversion=1.4.0.BUILD-SNAPSHOT -Dclassifier=starter-poms -Dpackaging=zip -Dfile=/path/to/file
[ERROR]
[ERROR] Alternatively, if you host your own repository you can deploy the file there:
[ERROR] mvn deploy:deploy-file -DgroupId=org.springframework.boot -DartifactId=spring-boot-starters -Dversion=1.4.0.BUILD-SNAPSHOT -Dclassifier=starter-poms -Dpackaging=zip -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
[ERROR]
[ERROR]
[ERROR] org.springframework.boot:spring-boot-starters:zip:1.4.0.BUILD-SNAPSHOT
[ERROR]
[ERROR] from the specified remote repositories:
[ERROR] spring-ext (http://repo.spring.io/ext-release-local/, releases=true, snapshots=false),
[ERROR] spring-milestones (http://repo.spring.io/milestone, releases=true, snapshots=false),
[ERROR] spring-snapshots (http://repo.spring.io/snapshot, releases=true, snapshots=true),
[ERROR] central (https://repo.maven.apache.org/maven2, releases=true, snapshots=false)

I've tried to find the relevant file to download and install manually (as suggested in the error message) but to no avail.

Any assistance greatly appreciated.

philwebb commented 8 years ago

It's probably failing because the docs build requires all other projects to have been build and installed into your local repo. Try without -pl spring-boot-docs so that everything is installed. You can also add -DskipTests if you want to speed things up a bit.

daveyahoo commented 8 years ago

Thanks very much for the assistance, @philwebb

After removing the -pl switch and spring-boot-docs goal (and placing a recent version of Ant in my %path% environment variable) I now get what appears to be an Ant build error when calling a build script in the spring-boot-tools/spring-boot-antlib section:

[INFO] Building jar: D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\spring-boot-antlib-1.4.0.BUILD-SNAPSHOT-javadoc.jar
[INFO]
[INFO] --- maven-shade-plugin:2.3:shade (shade-runtime-dependencies) @ spring-boot-antlib ---
[INFO] Including org.springframework.boot:spring-boot-loader-tools:jar:1.4.0.BUILD-SNAPSHOT in the shaded jar.
[INFO] Including org.springframework:spring-core:jar:4.3.0.BUILD-SNAPSHOT in the shaded jar.
[INFO] Excluding commons-logging:commons-logging:jar:1.2 from the shaded jar.
[INFO] Minimizing jar org.springframework.boot:spring-boot-antlib:jar:1.4.0.BUILD-SNAPSHOT
[INFO] Minimized 855 -> 53 (6%)
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\spring-boot-antlib-1.4.0.BUILD-SNAPSHOT.jar with D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\spring-boot-antlib-1.4.0.BUILD-SNAPSHOT-shaded.jar
[INFO] Dependency-reduced POM written at: D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-antrun-plugin:1.7:run (antunit) @ spring-boot-antlib ---
[INFO] Executing tasks

main:
    [mkdir] Created dir: D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it
     [copy] Copying 4 files to D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it
[pathconvert] D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\spring-boot-antlib-1.4.0.BUILD-SNAPSHOT.jar
  [antunit] Build File: D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it\sample\build.xml
  [antunit] Tests run: 5, Failures: 0, Errors: 5, Time elapsed: 220.646 sec
  [antunit] Target: test-findmainclass-set-property  caused an ERROR
  [antunit]     at line 10, column 133
  [antunit]     Message: impossible to resolve dependencies:
  [antunit]     resolve failed - see output for details
  [antunit]     took 44.691 sec
  [antunit] Target: test-exejar-find-start-class  caused an ERROR
  [antunit]     at line 10, column 133
  [antunit]     Message: impossible to resolve dependencies:
  [antunit]     resolve failed - see output for details
  [antunit]     took 43.748 sec
  [antunit] Target: test-findmainclass-log-message  caused an ERROR
  [antunit]     at line 10, column 133
  [antunit]     Message: impossible to resolve dependencies:
  [antunit]     resolve failed - see output for details
  [antunit]     took 44.584 sec
  [antunit] Target: test-findmainclass-override  caused an ERROR
  [antunit]     at line 10, column 133
  [antunit]     Message: impossible to resolve dependencies:
  [antunit]     resolve failed - see output for details
  [antunit]     took 43.729 sec
  [antunit] Target: test-exejar-explicit-start-class  caused an ERROR
  [antunit]     at line 10, column 133
  [antunit]     Message: impossible to resolve dependencies:
 [antunit]     resolve failed - see output for details
  [antunit]     took 43.871 sec
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] Spring Boot Dependencies ........................... SUCCESS [  3.443 s]
[INFO] Spring Boot Parent ................................. SUCCESS [  2.852 s]
[INFO] Spring Boot Tools .................................. SUCCESS [  0.610 s]
[INFO] Spring Boot Configuration Metadata ................. SUCCESS [  7.492 s]
[INFO] Spring Boot Configuration Processor ................ SUCCESS [ 15.861 s]
[INFO] Spring Boot Loader ................................. SUCCESS [02:11 min]
[INFO] Spring Boot Loader Tools ........................... SUCCESS [ 17.511 s]
[INFO] Spring Boot Maven Plugin ........................... SUCCESS [ 33.952 s]
[INFO] Spring Boot Gradle Plugin .......................... SUCCESS [ 16.292 s]
[INFO] Spring Boot Antlib ................................. FAILURE [03:46 min]
[INFO] Spring Boot ........................................ SKIPPED
[INFO] Spring Boot Test ................................... SKIPPED
[INFO] Spring Boot AutoConfigure .......................... SKIPPED
[INFO] Spring Boot Test Auto-Configure .................... SKIPPED
[INFO] Spring Boot Actuator ............................... SKIPPED
[INFO] Spring Boot Developer Tools ........................ SKIPPED
[INFO] Spring Boot Docs ................................... SKIPPED
[INFO] Spring Boot Starters ............................... SKIPPED
[INFO] Spring Boot Logging Starter ........................ SKIPPED
[INFO] Spring Boot Starter ................................ SKIPPED
[INFO] Spring Boot AMPQ Starter ........................... SKIPPED
[INFO] Spring Boot AOP Starter ............................ SKIPPED
[INFO] Spring Boot Artemis Starter ........................ SKIPPED
[INFO] Spring Boot Batch Starter .......................... SKIPPED
[INFO] Spring Boot Cache Starter .......................... SKIPPED
[INFO] Spring Boot Spring Cloud Connectors Starter ........ SKIPPED
[INFO] Spring Boot Data Cassandra Starter ................. SKIPPED
[INFO] Spring Boot Data Couchbase Starter ................. SKIPPED
[INFO] Spring Boot Data Elasticsearch Starter ............. SKIPPED
[INFO] Spring Boot Data GemFire Starter ................... SKIPPED
[INFO] Spring Boot JDBC Starter ........................... SKIPPED
[INFO] Spring Boot Data JPA Starter ....................... SKIPPED
[INFO] Spring Boot Data MongoDB Starter ................... SKIPPED
[INFO] Spring Boot Data Neo4j Starter ..................... SKIPPED
[INFO] Spring Boot Data Redis Starter ..................... SKIPPED
[INFO] Spring Boot Tomcat Starter ......................... SKIPPED
[INFO] Spring Boot Web Starter ............................ SKIPPED
[INFO] Spring Boot Data REST Starter ...................... SKIPPED
[INFO] Spring Boot Data Solr Starter ...................... SKIPPED
[INFO] Spring Boot FreeMarker Starter ..................... SKIPPED
[INFO] Spring Boot Groovy Templates Starter ............... SKIPPED
[INFO] Spring Boot HATEOAS Starter ........................ SKIPPED
[INFO] Spring Boot HornetQ Starter ........................ SKIPPED
[INFO] Spring Boot Integration Starter .................... SKIPPED
[INFO] Spring Boot Validation Starter ..................... SKIPPED
[INFO] Spring Boot Jersey Starter ......................... SKIPPED
[INFO] Spring Boot Jetty Starter .......................... SKIPPED
[INFO] Spring Boot JOOQ Starter ........................... SKIPPED
[INFO] Spring Boot Atomikos JTA Starter ................... SKIPPED
[INFO] Spring Boot Bitronix JTA Starter ................... SKIPPED
[INFO] Spring Boot Log4j 2 Starter ........................ SKIPPED
[INFO] Spring Boot Mail Starter ........................... SKIPPED
[INFO] Spring Boot Mobile Starter ......................... SKIPPED
[INFO] Spring Boot Mustache Starter ....................... SKIPPED
[INFO] Spring Boot Actuator Starter ....................... SKIPPED
[INFO] Spring Boot Starter Parent ......................... SKIPPED
[INFO] Spring Boot Security Starter ....................... SKIPPED
[INFO] Spring Boot Social Facebook Starter ................ SKIPPED
[INFO] Spring Boot Social Twitter Starter ................. SKIPPED
[INFO] Spring Boot Social LinkedIn Starter ................ SKIPPED
[INFO] Spring Boot Remote Shell Starter ................... SKIPPED
[INFO] Spring Boot Test Starter ........................... SKIPPED
[INFO] Spring Boot Thymeleaf Starter ...................... SKIPPED
[INFO] Spring Boot Undertow Starter ....................... SKIPPED
[INFO] Spring Boot Velocity Starter ....................... SKIPPED
[INFO] Spring Boot WebSocket Starter ...................... SKIPPED
[INFO] Spring Boot Web Services Starter ................... SKIPPED
[INFO] Spring Boot Actuator Docs .......................... SKIPPED
[INFO] Spring Boot CLI .................................... SKIPPED
[INFO] Spring Boot Build .................................. SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 07:37 min
[INFO] Finished at: 2016-04-11T09:15:21+10:00
[INFO] Final Memory: 149M/926M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:run (antunit) on project spring-boot-antlib: An Ant BuildException has occured: Tests failed with 0 failures and 5 errors
[ERROR] around Ant part ...<antunit xmlns="antlib:org.apache.ant.antunit">... @ 14:50 in D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\antrun\build-main.xml
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command

I'm not much of an Ant user but if I try and run the Ant target manually with debug logging enabled I get the following:

>ant -d -buildfile build-main.xml

Apache Ant(TM) version 1.9.6 compiled on June 29 2015
Buildfile: D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\antrun\build-main.xml
Adding reference: ant.PropertyHelper
Detected Java version: 1.8 in: C:\Program Files\Java\jdk1.8.0_77\jre
Detected OS: Windows 7
Adding reference: ant.ComponentHelper
Setting ro project property: ant.file -> D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\antrun\build-main.xml
Setting ro project property: ant.file.type -> file
Adding reference: ant.projectHelper
Adding reference: ant.parsing.context
Adding reference: ant.targets
parsing buildfile D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\antrun\build-main.xml
 with URI = file:/D:/SDS/SpringBoot/spring-boot-master/spring-boot-tools/spring-boot-antlib/target/antrun/build-main.xml

Setting ro project property: ant.project.name -> maven-antrun-
Adding reference: maven-antrun-
Setting ro project property: ant.project.default-target -> main
Setting ro project property: ant.file.maven-antrun- -> D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\antrun\build-main.xml
Setting ro project property: ant.file.type.maven-antrun- -> file
Project base dir set to: D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\antrun
 +Target:
 +Target: main
Adding reference: ant.LocalProperties
Setting ro project property: ant.project.invoked-targets -> main
Attempting to create object of type org.apache.tools.ant.helper.DefaultExecutor
Adding reference: ant.executor
Build sequence for target(s) `main' is [main]
Complete build sequence is [main, ]

main:
parsing buildfile jar:file:/D:/Utils/apache-ant-1.9.6/lib/ant.jar!/org/apache/tools/ant/antlib.xml with URI = jar:file:/D:/Utils/apache-ant-1.9.6/lib/ant.jar!/org/apache/tools/ant/antlib.xml from a zip file
    [mkdir] Skipping D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it because it already exists.
fileset: Setup scanner in dir D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\src\it with patternSet{ includes: [] excludes: [] }
     [copy] sample\build.xml omitted as D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it\sample\build.xml is up to date.
     [copy] sample\ivysettings.xml omitted as D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it\sample\ivysettings.xml is up to date.
     [copy] sample\src\main\java\org\test\SampleApplication.java omitted as D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it\sample\src\main\java\org\test\SampleApplication.java is up to date.
     [copy] sample\src\main\resources\foo omitted as D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it\sample\src\main\resources\foo is up to date.
     [copy]  omitted as D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it is up to date.
     [copy] sample omitted as D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it\sample is up to date.
     [copy] sample\src omitted as D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it\sample\src is up to date.
     [copy] sample\src\main omitted as D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it\sample\src\main is up to date.
     [copy] sample\src\main\java omitted as D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it\sample\src\main\java is up to date.
     [copy] sample\src\main\java\org omitted as D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it\sample\src\main\java\org is up to date.
     [copy] sample\src\main\java\org\test omitted as D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it\sample\src\main\java\org\test is up to date.
     [copy] sample\src\main\resources omitted as D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\it\sample\src\main\resources is up to date.
Adding reference: taskpath
fileset: Setup scanner in dir D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target with patternSet{ includes: [spring-boot-antlib-1.4.0.BUILD-SNAPSHOT.jar] excludes: [] }
[pathconvert] D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\spring-boot-antlib-1.4.0.BUILD-SNAPSHOT.jar
parsing buildfile jar:file:/D:/SDS/SpringBoot/spring-boot-master/spring-boot-tools/spring-boot-antlib/target/spring-boot-antlib-1.4.0.BUILD-SNAPSHOT.jar!/org/springframework/boot/ant/antlib.xml with URI = jar:file:/D:/SDS/SpringBoot/spring-boot-master/spring-boot-tools/spring-boot-antlib/target/spring-boot-antlib-1.4.0.BUILD-SNAPSHOT.jar!/org/springframework/boot/ant/antlib.xml from a zip file
Finding class org.springframework.boot.ant.FindMainClass
Loaded from D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\spring-boot-antlib-1.4.0.BUILD-SNAPSHOT.jar org/springframework/boot/ant/FindMainClass.class
Class org.apache.tools.ant.Task loaded from parent loader (parentFirst)
Class org.springframework.boot.ant.FindMainClass loaded from ant loader (parentFirst)
Class java.lang.Throwable loaded from parent loader (parentFirst)
Class org.apache.tools.ant.BuildException loaded from parent loader (parentFirst)
Class java.io.IOException loaded from parent loader (parentFirst)
 +Datatype antlib:org.springframework.boot.ant:findmainclass org.springframework.boot.ant.FindMainClass
Finding class org.springframework.boot.ant.ShareAntlibLoader
Loaded from D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\spring-boot-antlib-1.4.0.BUILD-SNAPSHOT.jar org/springframework/boot/ant/ShareAntlibLoader.class
Class org.springframework.boot.ant.ShareAntlibLoader loaded from ant loader (parentFirst)
 +Datatype antlib:org.springframework.boot.ant:spring-boot-antlib-share-antlib-loader org.springframework.boot.ant.ShareAntlibLoader
 +Datatype antlib:org.springframework.boot.ant:exejar org.apache.tools.ant.taskdefs.MacroInstance
 [macrodef] creating macro  antlib:org.springframework.boot.ant:exejar
Setting project property: build.compiler -> org.eclipse.jdt.core.JDTCompilerAdapter
[antlib:org.apache.ant.antunit] Could not load definitions from resource org/apache/ant/antunit/antlib.xml. It could not be found.

BUILD FAILED
D:\SDS\SpringBoot\spring-boot-master\spring-boot-tools\spring-boot-antlib\target\antrun\build-main.xml:14: Problem: failed to create task or type antlib:org.apache.ant.antunit:antunit
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.
No types or tasks have been defined in this namespace yet

This appears to be an antlib declaration.
Action: Check that the implementing library exists in one of:
        -D:\Utils\apache-ant-1.9.6\lib
        -C:\Users\MyName\.ant\lib
        -a directory added on the command line with the -lib argument

        at org.apache.tools.ant.UnknownElement.getNotFoundException(UnknownElement.java:500)
        at org.apache.tools.ant.UnknownElement.makeObject(UnknownElement.java:432)
        at org.apache.tools.ant.UnknownElement.maybeConfigure(UnknownElement.java:164)
        at org.apache.tools.ant.Task.perform(Task.java:347)
        at org.apache.tools.ant.Target.execute(Target.java:435)
        at org.apache.tools.ant.Target.performTasks(Target.java:456)
        at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1405)
        at org.apache.tools.ant.Project.executeTarget(Project.java:1376)
        at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
        at org.apache.tools.ant.Project.executeTargets(Project.java:1260)
        at org.apache.tools.ant.Main.runBuild(Main.java:853)
        at org.apache.tools.ant.Main.startAnt(Main.java:235)
        at org.apache.tools.ant.launch.Launcher.run(Launcher.java:285)
        at org.apache.tools.ant.launch.Launcher.main(Launcher.java:112)

Total time: 0 seconds

I'm struggling to find anything to progress with there so any assistance would, once again, be very much appreciated.

If I comment out the spring-boot-antlib module from spring-boot-master/spring-boot-tools/pom.xml the Maven build gets further but finally stops at the spring-boot-docs goal with what looks like the original error (above).

philwebb commented 8 years ago

It looks like something else is going on here. I may have given you some bad advice earlier, I missed the fact that spring-snapshots (http://repo.spring.io/snapshot) would be used to resolve artifacts and that you were following the direct instructions from the README.

Is there anything special about your internet connection? Are you behind a proxy or do you have a corporate firewall that's preventing access to http://repo.spring.io?

Perhaps try cleaning out your ~/.m2/repository folder then running to see what debug output is produced:

$ ./mvnw clean install -U -X -pl spring-boot-docs -Pdefault,full

wilkinsona commented 8 years ago

There are a few things wrong with the current instructions. In part, that's my fault as they should have been updated as a result of #5267. I'll update the README.

wilkinsona commented 8 years ago

@daveyahoo I have updated the instructions in https://github.com/spring-projects/spring-boot/commit/2e86f0f89088220edb3f7fc828cbcd5ba1dc9615.

daveyahoo commented 8 years ago

Thanks, I am very grateful for your help (and relieved to hear it's probably not my ineptitude). I've tried following the revised instructions and, again, the first command works fine: mvnw clean install -f spring-boot-starters

I then tried the second command: mvnw clean generate-resources -pl spring-boot-docs -Pdefault,full But, again, I ran into problems. At least they are different problems; something to do with Groovy.

I re-ran the command with switches -U -X but, as I know even less about Groovy than I do about Ant, I can't get much out of the result myself. It is too verbose to post the whole output here but the final error looks like this:

[INFO] Fetching Groovy script from file:/D:/SDS/SpringBoot/spring-boot-master/spring-boot-docs/src/main/groovy/generateAutoConfigurationClassTables.groovy.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 35.747 s
[INFO] Finished at: 2016-04-11T19:59:34+10:00
[INFO] Final Memory: 57M/248M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.gmavenplus:gmavenplus-plugin:1.2:execute (default) on project spring-boot-docs: Error occurred while calling a method on a Groovy class from classpath. InvocationTargetException: org/crsh/cli/Required: org.crsh.cli.Required -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.gmavenplus:gmavenplus-plugin:1.2:execute (default) on project spring-boot-docs: Error occurred while calling a method on a Groovy class from classpath.
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:216)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
        at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
        at org.apache.maven.cli.MavenCli.execute(MavenCli.java:862)
        at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:286)
        at org.apache.maven.cli.MavenCli.main(MavenCli.java:197)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.maven.wrapper.BootstrapMainStarter.start(BootstrapMainStarter.java:39)
        at org.apache.maven.wrapper.WrapperExecutor.execute(WrapperExecutor.java:122)
        at org.apache.maven.wrapper.MavenWrapperMain.main(MavenWrapperMain.java:50)
Caused by: org.apache.maven.plugin.MojoExecutionException: Error occurred while calling a method on a Groovy class from classpath.
        at org.codehaus.gmavenplus.mojo.ExecuteMojo.execute(ExecuteMojo.java:118)
        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
        ... 27 more
Caused by: java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.codehaus.gmavenplus.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:118)
        at org.codehaus.gmavenplus.mojo.ExecuteMojo.executeScripts(ExecuteMojo.java:183)
        at org.codehaus.gmavenplus.mojo.ExecuteMojo.execute(ExecuteMojo.java:114)
        ... 29 more
Caused by: java.lang.NoClassDefFoundError: org/crsh/cli/Required
        at org.crsh.lang.impl.groovy.ast.DefaultImportTransformer.<clinit>(DefaultImportTransformer.java:52)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at java.lang.Class.newInstance(Class.java:442)
        at org.codehaus.groovy.transform.ASTTransformationVisitor.addPhaseOperationsForGlobalTransforms(ASTTransformationVisitor.java:315)
        at org.codehaus.groovy.transform.ASTTransformationVisitor.doAddGlobalTransforms(ASTTransformationVisitor.java:282)
        at org.codehaus.groovy.transform.ASTTransformationVisitor.addGlobalTransforms(ASTTransformationVisitor.java:192)

        at org.codehaus.groovy.transform.ASTTransformationVisitor.addPhaseOperations(ASTTransformationVisitor.java:156)
        at org.codehaus.groovy.control.CompilationUnit.<init>(CompilationUnit.java:206)
        at org.codehaus.groovy.control.CompilationUnit.<init>(CompilationUnit.java:123)
        at groovy.lang.GroovyClassLoader.createCompilationUnit(GroovyClassLoader.java:456)
        at groovy.lang.GroovyClassLoader.doParseClass(GroovyClassLoader.java:277)
        at groovy.lang.GroovyClassLoader.parseClass(GroovyClassLoader.java:268)
        at groovy.lang.GroovyShell.parseClass(GroovyShell.java:688)
        at groovy.lang.GroovyShell.parse(GroovyShell.java:700)
        at groovy.lang.GroovyShell.evaluate(GroovyShell.java:584)
        at groovy.lang.GroovyShell.evaluate(GroovyShell.java:623)
        at groovy.lang.GroovyShell.evaluate(GroovyShell.java:594)
        ... 36 more
Caused by: java.lang.ClassNotFoundException: org.crsh.cli.Required
        at org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy.loadClass(SelfFirstStrategy.java:50)
        at org.codehaus.plexus.classworlds.realm.ClassRealm.unsynchronizedLoadClass(ClassRealm.java:271)
        at org.codehaus.plexus.classworlds.realm.ClassRealm.loadClass(ClassRealm.java:247)
        at org.codehaus.plexus.classworlds.realm.ClassRealm.loadClass(ClassRealm.java:239)
        ... 56 more
[ERROR]
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

Is that any use to you?

wilkinsona commented 8 years ago

Is that any use to you?

Sorry, but it doesn't look like it. I just tried the three steps that are now documented in the README with a clean Maven cache and it built the documentation successfully.

daveyahoo commented 8 years ago

[INFO] BUILD FAILURE :-( I had high hopes, cleaned out my local Maven repository and ran the 3 commands now in the README. The first two worked fine but, again, the last one failed on a Groovy step; the same step as before. AFAIK, it is the first time Groovy is used.

So a bit of background: This is a Win7 64-bit machine not sitting behind a corporate fire wall or proxy. I have never used Groovy before so there would have been no trace of it on the machine until now. (Whereas Maven & Ant were already being used.) It's not listed as a prerequisite.

The console output from the first mention of Groovy is:

[INFO]
[INFO] --- gmavenplus-plugin:1.2:execute (default) @ spring-boot-docs ---
Downloading: http://objectstyle.org/maven2/org/codehaus/groovy/groovy-all/2.4.6/groovy-all-2.4.6.pom
Downloading: http://repo.spring.io/milestone/org/codehaus/groovy/groovy-all/2.4.6/groovy-all-2.4.6.pom
Downloading: http://repo.spring.io/snapshot/org/codehaus/groovy/groovy-all/2.4.6/groovy-all-2.4.6.pom
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.6/groovy-all-2.4.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.6/groovy-all-2.4.6.pom (20 KB at 37.3 KB/sec)
Downloading: http://objectstyle.org/maven2/org/fusesource/jansi/jansi/1.11/jansi-1.11.pom
Downloading: http://repo.spring.io/milestone/org/fusesource/jansi/jansi/1.11/jansi-1.11.pom
Downloading: http://repo.spring.io/snapshot/org/fusesource/jansi/jansi/1.11/jansi-1.11.pom
Downloading: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/1.11/jansi-1.11.pom
Downloaded: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/1.11/jansi-1.11.pom (4 KB at 9.4 KB/sec)
Downloading: http://objectstyle.org/maven2/org/fusesource/jansi/jansi-project/1.11/jansi-project-1.11.pom
Downloading: http://repo.spring.io/milestone/org/fusesource/jansi/jansi-project/1.11/jansi-project-1.11.pom
Downloading: http://repo.spring.io/snapshot/org/fusesource/jansi/jansi-project/1.11/jansi-project-1.11.pom
Downloading: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi-project/1.11/jansi-project-1.11.pom
Downloaded: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi-project/1.11/jansi-project-1.11.pom (12 KB at 28.2 KB/sec)
Downloading: http://objectstyle.org/maven2/org/fusesource/fusesource-pom/1.8/fusesource-pom-1.8.pom
Downloading: http://repo.spring.io/milestone/org/fusesource/fusesource-pom/1.8/fusesource-pom-1.8.pom
Downloading: http://repo.spring.io/snapshot/org/fusesource/fusesource-pom/1.8/fusesource-pom-1.8.pom
Downloading: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.8/fusesource-pom-1.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.8/fusesource-pom-1.8.pom (15 KB at 35.7 KB/sec)
Downloading: http://objectstyle.org/maven2/jline/jline/2.11/jline-2.11.pom
Downloading: http://repo.spring.io/milestone/jline/jline/2.11/jline-2.11.pom
Downloading: http://repo.spring.io/snapshot/jline/jline/2.11/jline-2.11.pom
Downloading: https://repo.maven.apache.org/maven2/jline/jline/2.11/jline-2.11.pom
Downloaded: https://repo.maven.apache.org/maven2/jline/jline/2.11/jline-2.11.pom (17 KB at 40.4 KB/sec)
Downloading: http://objectstyle.org/maven2/org/apache/ant/ant/1.9.4/ant-1.9.4.pom
Downloading: http://repo.spring.io/milestone/org/apache/ant/ant/1.9.4/ant-1.9.4.pom
Downloading: http://repo.spring.io/snapshot/org/apache/ant/ant/1.9.4/ant-1.9.4.pom
Downloading: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.9.4/ant-1.9.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.9.4/ant-1.9.4.pom (10 KB at 24.1 KB/sec)
Downloading: http://objectstyle.org/maven2/org/apache/ant/ant-parent/1.9.4/ant-parent-1.9.4.pom
Downloading: http://repo.spring.io/milestone/org/apache/ant/ant-parent/1.9.4/ant-parent-1.9.4.pom
Downloading: http://repo.spring.io/snapshot/org/apache/ant/ant-parent/1.9.4/ant-parent-1.9.4.pom
Downloading: https://repo.maven.apache.org/maven2/org/apache/ant/ant-parent/1.9.4/ant-parent-1.9.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/ant/ant-parent/1.9.4/ant-parent-1.9.4.pom (6 KB at 14.6 KB/sec)
Downloading: http://objectstyle.org/maven2/org/apache/ant/ant-launcher/1.9.4/ant-launcher-1.9.4.pom
Downloading: http://repo.spring.io/milestone/org/apache/ant/ant-launcher/1.9.4/ant-launcher-1.9.4.pom
Downloading: http://repo.spring.io/snapshot/org/apache/ant/ant-launcher/1.9.4/ant-launcher-1.9.4.pom
Downloading: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.9.4/ant-launcher-1.9.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.9.4/ant-launcher-1.9.4.pom (3 KB at 6.2 KB/sec)
Downloading: http://objectstyle.org/maven2/org/apache/ivy/ivy/2.3.0/ivy-2.3.0.pom
Downloading: http://repo.spring.io/milestone/org/apache/ivy/ivy/2.3.0/ivy-2.3.0.pom
Downloading: http://repo.spring.io/snapshot/org/apache/ivy/ivy/2.3.0/ivy-2.3.0.pom
Downloading: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.3.0/ivy-2.3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.3.0/ivy-2.3.0.pom (6 KB at 14.0 KB/sec)
Downloading: http://objectstyle.org/maven2/org/codehaus/groovy/groovy-all/2.4.6/groovy-all-2.4.6.jar
Downloading: http://objectstyle.org/maven2/org/fusesource/jansi/jansi/1.11/jansi-1.11.jar
Downloading: http://objectstyle.org/maven2/org/apache/ant/ant-launcher/1.9.4/ant-launcher-1.9.4.jar
Downloading: http://objectstyle.org/maven2/org/apache/ant/ant/1.9.4/ant-1.9.4.jar
Downloading: http://objectstyle.org/maven2/jline/jline/2.11/jline-2.11.jar
Downloading: http://objectstyle.org/maven2/org/apache/ivy/ivy/2.3.0/ivy-2.3.0.jar
Downloading: http://repo.spring.io/milestone/org/codehaus/groovy/groovy-all/2.4.6/groovy-all-2.4.6.jar
Downloading: http://repo.spring.io/milestone/org/fusesource/jansi/jansi/1.11/jansi-1.11.jar
Downloading: http://repo.spring.io/milestone/org/apache/ant/ant/1.9.4/ant-1.9.4.jar
Downloading: http://repo.spring.io/milestone/jline/jline/2.11/jline-2.11.jar
Downloading: http://repo.spring.io/milestone/org/apache/ant/ant-launcher/1.9.4/ant-launcher-1.9.4.jar
Downloading: http://repo.spring.io/milestone/org/apache/ivy/ivy/2.3.0/ivy-2.3.0.jar
Downloading: http://repo.spring.io/snapshot/org/codehaus/groovy/groovy-all/2.4.6/groovy-all-2.4.6.jar
Downloading: http://repo.spring.io/snapshot/org/apache/ant/ant-launcher/1.9.4/ant-launcher-1.9.4.jar
Downloading: http://repo.spring.io/snapshot/jline/jline/2.11/jline-2.11.jar
Downloading: http://repo.spring.io/snapshot/org/fusesource/jansi/jansi/1.11/jansi-1.11.jar
Downloading: http://repo.spring.io/snapshot/org/apache/ant/ant/1.9.4/ant-1.9.4.jar
Downloading: http://repo.spring.io/snapshot/org/apache/ivy/ivy/2.3.0/ivy-2.3.0.jar
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.6/groovy-all-2.4.6.jar
Downloading: https://repo.maven.apache.org/maven2/jline/jline/2.11/jline-2.11.jar
Downloading: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/1.11/jansi-1.11.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.9.4/ant-launcher-1.9.4.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.9.4/ant-1.9.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.9.4/ant-launcher-1.9.4.jar (18 KB at 23.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.3.0/ivy-2.3.0.jar
Downloaded: https://repo.maven.apache.org/maven2/jline/jline/2.11/jline-2.11.jar (204 KB at 104.3 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/1.11/jansi-1.11.jar (112 KB at 43.0 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.9.4/ant-1.9.4.jar (1972 KB at 143.5 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.3.0/ivy-2.3.0.jar (1194 KB at 73.9 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.6/groovy-all-2.4.6.jar (6860 KB at 243.2 KB/sec)
[INFO] Using Groovy 2.4.6 to perform execute.
[INFO] Fetching Groovy script from file:/D:/SDS/SpringBoot/spring-boot-master/spring-boot-docs/src/main/groovy/generateAutoConfigurationClassTables.groovy.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 10:52 min
[INFO] Finished at: 2016-04-12T05:58:26+10:00
[INFO] Final Memory: 54M/245M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.gmavenplus:gmavenplus-plugin:1.2:execute (default) on project spring-boot-docs: Error occurred while calling a method on a Groovy class from classpath. InvocationTargetException: org/crsh/cli/Required: org.crsh.cli.Required -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
wilkinsona commented 8 years ago

Very strange. It looks like the classpath is incomplete. Let me try to explain why I think that.

Groovy support AST transformations, classes that are loaded via an entry in META-IN/services/org.codehaus.groovy.transform.ASTTransformation and used to modify the abstract syntax tree during compilation. The project has a dependency on org.crashub:crash-shell (it's needed to correctly build the javadoc) that contains such an entry for org.crsh.lang.impl.groovy.ast.DefaultImportTransformer. Unfortunately, the GMavenPlus plugin uses the project's test classpath when its executing a script so this AST transformation is on the classpath even though we don't need it. DefaultImportTransformer relies upon org.crsh.cli.Required. This class is in the org.crashub:crash-cli module, a transitive dependency of crash-shell. For reasons that I don't understand, it would appear that org.crashub:crash-cli isn't on the classpath when it should be. If I build spring-boot-docs with -X, in among all the output I can see that both crash-cli and crash-shell are on the classpath:

[INFO] Using Groovy 2.4.6 to perform execute.
[DEBUG] Plugin classpath:
…
[DEBUG] Project test classpath:
[/Users/awilkinson/dev/spring/spring-boot/spring-boot-docs/target/test-classes, /Users/awilkinson/dev/spring/spring-boot/spring-boot-docs/target/classes, /Users/awilkinson/.m2/repository/org/springframework/boot/spring-boot/1.4.0.BUILD-SNAPSHOT/spring-boot-1.4.0.BUILD-SNAPSHOT.jar, /Users/awilkinson/.m2/repository/org/springframework/spring-core/4.3.0.RC1/spring-core-4.3.0.RC1.jar, /Users/awilkinson/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar, /Users/awilkinson/.m2/repository/org/springframework/spring-context/4.3.0.RC1/spring-context-4.3.0.RC1.jar, /Users/awilkinson/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.4.0.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.0.BUILD-SNAPSHOT.jar, /Users/awilkinson/.m2/repository/org/springframework/boot/spring-boot-actuator/1.4.0.BUILD-SNAPSHOT/spring-boot-actuator-1.4.0.BUILD-SNAPSHOT.jar, /Users/awilkinson/.m2/repository/org/springframework/boot/spring-boot-loader/1.4.0.BUILD-SNAPSHOT/spring-boot-loader-1.4.0.BUILD-SNAPSHOT.jar, /Users/awilkinson/.m2/repository/org/springframework/boot/spring-boot-loader-tools/1.4.0.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.0.BUILD-SNAPSHOT.jar, /Users/awilkinson/.m2/repository/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.jar, /Users/awilkinson/.m2/repository/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.jar, /Users/awilkinson/.m2/repository/com/atomikos/transactions-jms/3.9.3/transactions-jms-3.9.3.jar, /Users/awilkinson/.m2/repository/com/atomikos/transactions-jta/3.9.3/transactions-jta-3.9.3.jar, /Users/awilkinson/.m2/repository/com/atomikos/transactions/3.9.3/transactions-3.9.3.jar, /Users/awilkinson/.m2/repository/com/atomikos/transactions-api/3.9.3/transactions-api-3.9.3.jar, /Users/awilkinson/.m2/repository/com/atomikos/atomikos-util/3.9.3/atomikos-util-3.9.3.jar, /Users/awilkinson/.m2/repository/com/atomikos/transactions-jdbc/3.9.3/transactions-jdbc-3.9.3.jar, /Users/awilkinson/.m2/repository/com/couchbase/client/java-client/2.2.5/java-client-2.2.5.jar, /Users/awilkinson/.m2/repository/com/couchbase/client/core-io/1.2.5/core-io-1.2.5.jar, /Users/awilkinson/.m2/repository/io/reactivex/rxjava/1.0.15/rxjava-1.0.15.jar, /Users/awilkinson/.m2/repository/com/couchbase/client/couchbase-spring-cache/2.0.0/couchbase-spring-cache-2.0.0.jar, /Users/awilkinson/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.7.3/jackson-databind-2.7.3.jar, /Users/awilkinson/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.7.3/jackson-annotations-2.7.3.jar, /Users/awilkinson/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.7.3/jackson-core-2.7.3.jar, /Users/awilkinson/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.7.3/jackson-datatype-joda-2.7.3.jar, /Users/awilkinson/.m2/repository/joda-time/joda-time/2.9.3/joda-time-2.9.3.jar, /Users/awilkinson/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.7.3/jackson-dataformat-xml-2.7.3.jar, /Users/awilkinson/.m2/repository/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.7.3/jackson-module-jaxb-annotations-2.7.3.jar, /Users/awilkinson/.m2/repository/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar, /Users/awilkinson/.m2/repository/com/google/code/gson/gson/2.6.2/gson-2.6.2.jar, /Users/awilkinson/.m2/repository/com/googlecode/json-simple/json-simple/1.1.1/json-simple-1.1.1.jar, /Users/awilkinson/.m2/repository/com/hazelcast/hazelcast/3.6.1/hazelcast-3.6.1.jar, /Users/awilkinson/.m2/repository/com/hazelcast/hazelcast-spring/3.6.1/hazelcast-spring-3.6.1.jar, /Users/awilkinson/.m2/repository/com/samskivert/jmustache/1.12/jmustache-1.12.jar, /Users/awilkinson/.m2/repository/com/sendgrid/sendgrid-java/2.2.2/sendgrid-java-2.2.2.jar, /Users/awilkinson/.m2/repository/org/apache/httpcomponents/httpcore/4.4.4/httpcore-4.4.4.jar, /Users/awilkinson/.m2/repository/org/apache/httpcomponents/httpmime/4.5.2/httpmime-4.5.2.jar, /Users/awilkinson/.m2/repository/com/sendgrid/smtpapi-java/1.2.0/smtpapi-java-1.2.0.jar, /Users/awilkinson/.m2/repository/com/timgroup/java-statsd-client/3.1.0/java-statsd-client-3.1.0.jar, /Users/awilkinson/.m2/repository/com/zaxxer/HikariCP/2.4.5/HikariCP-2.4.5.jar, /Users/awilkinson/.m2/repository/commons-dbcp/commons-dbcp/1.4/commons-dbcp-1.4.jar, /Users/awilkinson/.m2/repository/commons-pool/commons-pool/1.6/commons-pool-1.6.jar, /Users/awilkinson/.m2/repository/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar, /Users/awilkinson/.m2/repository/org/assertj/assertj-core/2.4.1/assertj-core-2.4.1.jar, /Users/awilkinson/.m2/repository/io/dropwizard/metrics/metrics-core/3.1.2/metrics-core-3.1.2.jar, /Users/awilkinson/.m2/repository/io/projectreactor/spring/reactor-spring-context/2.0.7.RELEASE/reactor-spring-context-2.0.7.RELEASE.jar, /Users/awilkinson/.m2/repository/com/jayway/jsonpath/json-path/2.2.0/json-path-2.2.0.jar, /Users/awilkinson/.m2/repository/net/minidev/json-smart/2.2.1/json-smart-2.2.1.jar, /Users/awilkinson/.m2/repository/net/minidev/accessors-smart/1.1/accessors-smart-1.1.jar, /Users/awilkinson/.m2/repository/io/projectreactor/spring/reactor-spring-core/2.0.7.RELEASE/reactor-spring-core-2.0.7.RELEASE.jar, /Users/awilkinson/.m2/repository/io/projectreactor/reactor-bus/2.0.7.RELEASE/reactor-bus-2.0.7.RELEASE.jar, /Users/awilkinson/.m2/repository/com/goldmansachs/gs-collections/5.1.0/gs-collections-5.1.0.jar, /Users/awilkinson/.m2/repository/com/goldmansachs/gs-collections-api/5.1.0/gs-collections-api-5.1.0.jar, /Users/awilkinson/.m2/repository/io/projectreactor/reactor-core/2.0.7.RELEASE/reactor-core-2.0.7.RELEASE.jar, /Users/awilkinson/.m2/repository/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0.jar, /Users/awilkinson/.m2/repository/io/projectreactor/reactor-stream/2.0.7.RELEASE/reactor-stream-2.0.7.RELEASE.jar, /Users/awilkinson/.m2/repository/io/undertow/undertow-servlet/1.3.20.Final/undertow-servlet-1.3.20.Final.jar, /Users/awilkinson/.m2/repository/io/undertow/undertow-core/1.3.20.Final/undertow-core-1.3.20.Final.jar, /Users/awilkinson/.m2/repository/org/jboss/xnio/xnio-api/3.3.6.Final/xnio-api-3.3.6.Final.jar, /Users/awilkinson/.m2/repository/org/jboss/xnio/xnio-nio/3.3.6.Final/xnio-nio-3.3.6.Final.jar, /Users/awilkinson/.m2/repository/org/jboss/spec/javax/annotation/jboss-annotations-api_1.2_spec/1.0.0.Final/jboss-annotations-api_1.2_spec-1.0.0.Final.jar, /Users/awilkinson/.m2/repository/io/undertow/undertow-websockets-jsr/1.3.20.Final/undertow-websockets-jsr-1.3.20.Final.jar, /Users/awilkinson/.m2/repository/org/jboss/spec/javax/websocket/jboss-websocket-api_1.1_spec/1.1.0.Final/jboss-websocket-api_1.1_spec-1.1.0.Final.jar, /Users/awilkinson/.m2/repository/javax/jms/jms-api/1.1-rev-1/jms-api-1.1-rev-1.jar, /Users/awilkinson/.m2/repository/javax/mail/javax.mail-api/1.5.5/javax.mail-api-1.5.5.jar, /Users/awilkinson/.m2/repository/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar, /Users/awilkinson/.m2/repository/junit/junit/4.12/junit-4.12.jar, /Users/awilkinson/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar, /Users/awilkinson/.m2/repository/net/sf/ehcache/ehcache/2.10.1/ehcache-2.10.1.jar, /Users/awilkinson/.m2/repository/nz/net/ultraq/thymeleaf/thymeleaf-layout-dialect/1.3.3/thymeleaf-layout-dialect-1.3.3.jar, /Users/awilkinson/.m2/repository/org/thymeleaf/thymeleaf/2.1.4.RELEASE/thymeleaf-2.1.4.RELEASE.jar, /Users/awilkinson/.m2/repository/ognl/ognl/3.0.8/ognl-3.0.8.jar, /Users/awilkinson/.m2/repository/org/unbescape/unbescape/1.1.0.RELEASE/unbescape-1.1.0.RELEASE.jar, /Users/awilkinson/.m2/repository/org/apache/activemq/activemq-client/5.13.2/activemq-client-5.13.2.jar, /Users/awilkinson/.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1.1/geronimo-jms_1.1_spec-1.1.1.jar, /Users/awilkinson/.m2/repository/org/fusesource/hawtbuf/hawtbuf/1.11/hawtbuf-1.11.jar, /Users/awilkinson/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0.1/geronimo-j2ee-management_1.1_spec-1.0.1.jar, /Users/awilkinson/.m2/repository/org/apache/activemq/artemis-jms-client/1.2.0/artemis-jms-client-1.2.0.jar, /Users/awilkinson/.m2/repository/org/apache/activemq/artemis-core-client/1.2.0/artemis-core-client-1.2.0.jar, /Users/awilkinson/.m2/repository/org/apache/activemq/artemis-commons/1.2.0/artemis-commons-1.2.0.jar, /Users/awilkinson/.m2/repository/io/netty/netty-all/4.0.32.Final/netty-all-4.0.32.Final.jar, /Users/awilkinson/.m2/repository/org/apache/activemq/artemis-selector/1.2.0/artemis-selector-1.2.0.jar, /Users/awilkinson/.m2/repository/org/apache/geronimo/specs/geronimo-jms_2.0_spec/1.0-alpha-2/geronimo-jms_2.0_spec-1.0-alpha-2.jar, /Users/awilkinson/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar, /Users/awilkinson/.m2/repository/org/apache/activemq/activemq-jms-pool/5.13.2/activemq-jms-pool-5.13.2.jar, /Users/awilkinson/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.0.1/geronimo-jta_1.0.1B_spec-1.0.1.jar, /Users/awilkinson/.m2/repository/org/apache/activemq/artemis-jms-server/1.2.0/artemis-jms-server-1.2.0.jar, /Users/awilkinson/.m2/repository/org/apache/activemq/artemis-server/1.2.0/artemis-server-1.2.0.jar, /Users/awilkinson/.m2/repository/org/apache/activemq/artemis-journal/1.2.0/artemis-journal-1.2.0.jar, /Users/awilkinson/.m2/repository/org/apache/activemq/artemis-native/1.2.0/artemis-native-1.2.0.jar, /Users/awilkinson/.m2/repository/org/apache/activemq/artemis-service-extensions/1.2.0/artemis-service-extensions-1.2.0.jar, /Users/awilkinson/.m2/repository/org/apache/geronimo/specs/geronimo-ejb_3.0_spec/1.0.1/geronimo-ejb_3.0_spec-1.0.1.jar, /Users/awilkinson/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1.1/geronimo-jta_1.1_spec-1.1.1.jar, /Users/awilkinson/.m2/repository/org/apache/activemq/activemq-pool/5.13.2/activemq-pool-5.13.2.jar, /Users/awilkinson/.m2/repository/org/apache/logging/log4j/log4j-api/2.5/log4j-api-2.5.jar, /Users/awilkinson/.m2/repository/org/apache/logging/log4j/log4j-core/2.5/log4j-core-2.5.jar, /Users/awilkinson/.m2/repository/org/apache/httpcomponents/httpclient/4.5.2/httpclient-4.5.2.jar, /Users/awilkinson/.m2/repository/commons-codec/commons-codec/1.10/commons-codec-1.10.jar, /Users/awilkinson/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.0.33/tomcat-embed-core-8.0.33.jar, /Users/awilkinson/.m2/repository/org/apache/tomcat/embed/tomcat-embed-jasper/8.0.33/tomcat-embed-jasper-8.0.33.jar, /Users/awilkinson/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/8.0.33/tomcat-embed-el-8.0.33.jar, /Users/awilkinson/.m2/repository/org/eclipse/jdt/core/compiler/ecj/4.5/ecj-4.5.jar, /Users/awilkinson/.m2/repository/org/apache/tomcat/embed/tomcat-embed-logging-juli/8.0.33/tomcat-embed-logging-juli-8.0.33.jar, /Users/awilkinson/.m2/repository/org/apache/tomcat/tomcat-jdbc/8.0.33/tomcat-jdbc-8.0.33.jar, /Users/awilkinson/.m2/repository/org/apache/tomcat/tomcat-juli/8.0.33/tomcat-juli-8.0.33.jar, /Users/awilkinson/.m2/repository/org/apache/velocity/velocity/1.7/velocity-1.7.jar, /Users/awilkinson/.m2/repository/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar, /Users/awilkinson/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar, /Users/awilkinson/.m2/repository/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar, /Users/awilkinson/.m2/repository/commons-beanutils/commons-beanutils/1.9.2/commons-beanutils-1.9.2.jar, /Users/awilkinson/.m2/repository/commons-digester/commons-digester/2.1/commons-digester-2.1.jar, /Users/awilkinson/.m2/repository/commons-chain/commons-chain/1.1/commons-chain-1.1.jar, /Users/awilkinson/.m2/repository/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar, /Users/awilkinson/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar, /Users/awilkinson/.m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar, /Users/awilkinson/.m2/repository/oro/oro/2.0.8/oro-2.0.8.jar, /Users/awilkinson/.m2/repository/sslext/sslext/1.2-0/sslext-1.2-0.jar, /Users/awilkinson/.m2/repository/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar, /Users/awilkinson/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar, /Users/awilkinson/.m2/repository/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar, /Users/awilkinson/.m2/repository/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar, /Users/awilkinson/.m2/repository/org/codehaus/btm/btm/2.1.4/btm-2.1.4.jar, /Users/awilkinson/.m2/repository/javax/transaction/jta/1.1/jta-1.1.jar, /Users/awilkinson/.m2/repository/org/codehaus/groovy/groovy/2.4.6/groovy-2.4.6.jar, /Users/awilkinson/.m2/repository/org/codehaus/groovy/groovy-xml/2.4.6/groovy-xml-2.4.6.jar, /Users/awilkinson/.m2/repository/org/codehaus/groovy/groovy-templates/2.4.6/groovy-templates-2.4.6.jar, /Users/awilkinson/.m2/repository/org/crashub/crash.shell/1.3.2/crash.shell-1.3.2.jar, /Users/awilkinson/.m2/repository/org/crashub/crash.cli/1.3.2/crash.cli-1.3.2.jar, …

@daveyahoo What does the relevant section of the -X output look like for you?

daveyahoo commented 8 years ago

@wilkinsona: I think you're right on the money. With the -X switch I get the following "Project test classpath":

[DEBUG] Project test classpath:
[C:\Users\MyName\Work\SDS\samples\spring-boot-master\spring-boot-docs\target\test-classes, C:\Users\MyName\Work\SDS\samples\spring-boot-master\spring-boot-docs\target\classes, C:\Users\MyName\.m2\repository\org\springframework\boot\spring-boot\1.4.0.BUILD-SNAPSHOT\spring-boot-1.4.0.BUILD-SNAPSHOT.jar, C:\Users\MyName\.m2\repository\org\springframework\spring-core\4.3.0.BUILD-SNAPSHOT\spring-core-4.3.0.BUILD-SNAPSHOT.jar, C:\Users\MyName\.m2\repository\commons-logging\commons-logging\1.2\commons-logging-1.2.jar, C:\Users\MyName\.m2\repository\org\springframework\spring-context\4.3.0.BUILD-SNAPSHOT\spring-context-4.3.0.BUILD-SNAPSHOT.jar, C:\Users\MyName\.m2\repository\org\springframework\boot\spring-boot-autoconfigure\1.4.0.BUILD-SNAPSHOT\spring-boot-autoconfigure-1.4.0.BUILD-SNAPSHOT.jar, C:\Users\MyName\.m2\repository\org\springframework\boot\spring-boot-actuator\1.4.0.BUILD-SNAPSHOT\spring-boot-actuator-1.4.0.BUILD-SNAPSHOT.jar, C:\Users\MyName\.m2\repository\org\springframework\boot\spring-boot-loader\1.4.0.BUILD-SNAPSHOT\spring-boot-loader-1.4.0.BUILD-SNAPSHOT.jar, C:\Users\MyName\.m2\repository\org\springframework\boot\spring-boot-loader-tools\1.4.0.BUILD-SNAPSHOT\spring-boot-loader-tools-1.4.0.BUILD-SNAPSHOT.jar, C:\Users\MyName\.m2\repository\ch\qos\logback\logback-classic\1.1.6\logback-classic-1.1.6.jar, C:\Users\MyName\.m2\repository\ch\qos\logback\logback-core\1.1.6\logback-core-1.1.6.jar, C:\Users\MyName\.m2\repository\com\atomikos\transactions-jms\3.9.3\transactions-jms-3.9.3.jar, C:\Users\MyName\.m2\repository\com\atomikos\transactions-jta\3.9.3\transactions-jta-3.9.3.jar, C:\Users\MyName\.m2\repository\com\atomikos\transactions\3.9.3\transactions-3.9.3.jar, C:\Users\MyName\.m2\repository\com\atomikos\transactions-api\3.9.3\transactions-api-3.9.3.jar, C:\Users\MyName\.m2\repository\com\atomikos\atomikos-util\3.9.3\atomikos-util-3.9.3.jar, C:\Users\MyName\.m2\repository\com\atomikos\transactions-jdbc\3.9.3\transactions-jdbc-3.9.3.jar, C:\Users\MyName\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.7.2\jackson-databind-2.7.2.jar, C:\Users\MyName\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.7.2\jackson-annotations-2.7.2.jar, C:\Users\MyName\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.7.2\jackson-core-2.7.2.jar, C:\Users\MyName\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-joda\2.7.2\jackson-datatype-joda-2.7.2.jar, C:\Users\MyName\.m2\repository\joda-time\joda-time\2.9.2\joda-time-2.9.2.jar, C:\Users\MyName\.m2\repository\com\fasterxml\jackson\dataformat\jackson-dataformat-xml\2.7.2\jackson-dataformat-xml-2.7.2.jar, C:\Users\MyName\.m2\repository\com\fasterxml\jackson\module\jackson-module-jaxb-annotations\2.7.2\jackson-module-jaxb-annotations-2.7.2.jar, C:\Users\MyName\.m2\repository\org\codehaus\woodstox\stax2-api\3.1.4\stax2-api-3.1.4.jar, C:\Users\MyName\.m2\repository\com\google\code\gson\gson\2.6.2\gson-2.6.2.jar, C:\Users\MyName\.m2\repository\com\googlecode\json-simple\json-simple\1.1.1\json-simple-1.1.1.jar, C:\Users\MyName\.m2\repository\com\hazelcast\hazelcast\3.6\hazelcast-3.6.jar, C:\Users\MyName\.m2\repository\com\hazelcast\hazelcast-spring\3.6\hazelcast-spring-3.6.jar, C:\Users\MyName\.m2\repository\com\samskivert\jmustache\1.12\jmustache-1.12.jar, C:\Users\MyName\.m2\repository\com\sendgrid\sendgrid-java\2.2.2\sendgrid-java-2.2.2.jar, C:\Users\MyName\.m2\repository\org\apache\httpcomponents\httpcore\4.4.4\httpcore-4.4.4.jar, C:\Users\MyName\.m2\repository\org\apache\httpcomponents\httpmime\4.5.1\httpmime-4.5.1.jar, C:\Users\MyName\.m2\repository\com\sendgrid\smtpapi-java\1.2.0\smtpapi-java-1.2.0.jar, C:\Users\MyName\.m2\repository\com\timgroup\java-statsd-client\3.1.0\java-statsd-client-3.1.0.jar, C:\Users\MyName\.m2\repository\com\zaxxer\HikariCP\2.4.3\HikariCP-2.4.3.jar, C:\Users\MyName\.m2\repository\commons-dbcp\commons-dbcp\1.4\commons-dbcp-1.4.jar, C:\Users\MyName\.m2\repository\commons-pool\commons-pool\1.6\commons-pool-1.6.jar, C:\Users\MyName\.m2\repository\org\apache\commons\commons-pool2\2.4.2\commons-pool2-2.4.2.jar, C:\Users\MyName\.m2\repository\org\assertj\assertj-core\2.3.0\assertj-core-2.3.0.jar, C:\Users\MyName\.m2\repository\io\dropwizard\metrics\metrics-core\3.1.2\metrics-core-3.1.2.jar, C:\Users\MyName\.m2\repository\io\projectreactor\spring\reactor-spring-context\2.0.7.RELEASE\reactor-spring-context-2.0.7.RELEASE.jar, C:\Users\MyName\.m2\repository\com\jayway\jsonpath\json-path\2.1.0\json-path-2.1.0.jar, C:\Users\MyName\.m2\repository\net\minidev\json-smart\2.2\json-smart-2.2.jar, C:\Users\MyName\.m2\repository\net\minidev\accessors-smart\1.1\accessors-smart-1.1.jar, C:\Users\MyName\.m2\repository\io\projectreactor\spring\reactor-spring-core\2.0.7.RELEASE\reactor-spring-core-2.0.7.RELEASE.jar, C:\Users\MyName\.m2\repository\io\projectreactor\reactor-bus\2.0.7.RELEASE\reactor-bus-2.0.7.RELEASE.jar, C:\Users\MyName\.m2\repository\com\goldmansachs\gs-collections\5.1.0\gs-collections-5.1.0.jar, C:\Users\MyName\.m2\repository\com\goldmansachs\gs-collections-api\5.1.0\gs-collections-api-5.1.0.jar, C:\Users\MyName\.m2\repository\io\projectreactor\reactor-core\2.0.7.RELEASE\reactor-core-2.0.7.RELEASE.jar, C:\Users\MyName\.m2\repository\org\reactivestreams\reactive-streams\1.0.0\reactive-streams-1.0.0.jar, C:\Users\MyName\.m2\repository\io\projectreactor\reactor-stream\2.0.7.RELEASE\reactor-stream-2.0.7.RELEASE.jar, C:\Users\MyName\.m2\repository\io\undertow\undertow-servlet\1.3.19.Final\undertow-servlet-1.3.19.Final.jar, C:\Users\MyName\.m2\repository\io\undertow\undertow-core\1.3.19.Final\undertow-core-1.3.19.Final.jar, C:\Users\MyName\.m2\repository\org\jboss\xnio\xnio-api\3.3.4.Final\xnio-api-3.3.4.Final.jar, C:\Users\MyName\.m2\repository\org\jboss\xnio\xnio-nio\3.3.4.Final\xnio-nio-3.3.4.Final.jar, C:\Users\MyName\.m2\repository\org\jboss\spec\javax\annotation\jboss-annotations-api_1.2_spec\1.0.0.Final\jboss-annotations-api_1.2_spec-1.0.0.Final.jar, C:\Users\MyName\.m2\repository\io\undertow\undertow-websockets-jsr\1.3.19.Final\undertow-websockets-jsr-1.3.19.Final.jar, C:\Users\MyName\.m2\repository\org\jboss\spec\javax\websocket\jboss-websocket-api_1.1_spec\1.1.0.Final\jboss-websocket-api_1.1_spec-1.1.0.Final.jar, C:\Users\MyName\.m2\repository\javax\jms\jms-api\1.1-rev-1\jms-api-1.1-rev-1.jar, C:\Users\MyName\.m2\repository\javax\mail\javax.mail-api\1.5.5\javax.mail-api-1.5.5.jar, C:\Users\MyName\.m2\repository\javax\servlet\javax.servlet-api\3.1.0\javax.servlet-api-3.1.0.jar, C:\Users\MyName\.m2\repository\junit\junit\4.12\junit-4.12.jar, C:\Users\MyName\.m2\repository\org\hamcrest\hamcrest-core\1.3\hamcrest-core-1.3.jar, C:\Users\MyName\.m2\repository\net\sf\ehcache\ehcache\2.10.1\ehcache-2.10.1.jar, C:\Users\MyName\.m2\repository\nz\net\ultraq\thymeleaf\thymeleaf-layout-dialect\1.3.3\thymeleaf-layout-dialect-1.3.3.jar, C:\Users\MyName\.m2\repository\org\thymeleaf\thymeleaf\2.1.4.RELEASE\thymeleaf-2.1.4.RELEASE.jar, C:\Users\MyName\.m2\repository\ognl\ognl\3.0.8\ognl-3.0.8.jar, C:\Users\MyName\.m2\repository\org\unbescape\unbescape\1.1.0.RELEASE\unbescape-1.1.0.RELEASE.jar, C:\Users\MyName\.m2\repository\org\apache\activemq\activemq-client\5.13.1\activemq-client-5.13.1.jar, C:\Users\MyName\.m2\repository\org\apache\geronimo\specs\geronimo-jms_1.1_spec\1.1.1\geronimo-jms_1.1_spec-1.1.1.jar, C:\Users\MyName\.m2\repository\org\fusesource\hawtbuf\hawtbuf\1.11\hawtbuf-1.11.jar, C:\Users\MyName\.m2\repository\org\apache\geronimo\specs\geronimo-j2ee-management_1.1_spec\1.0.1\geronimo-j2ee-management_1.1_spec-1.0.1.jar, C:\Users\MyName\.m2\repository\org\apache\activemq\artemis-jms-client\1.1.0\artemis-jms-client-1.1.0.jar, C:\Users\MyName\.m2\repository\org\apache\activemq\artemis-core-client\1.1.0\artemis-core-client-1.1.0.jar, C:\Users\MyName\.m2\repository\org\apache\activemq\artemis-commons\1.1.0\artemis-commons-1.1.0.jar, C:\Users\MyName\.m2\repository\org\jboss\logmanager\jboss-logmanager\1.5.3.Final\jboss-logmanager-1.5.3.Final.jar, C:\Users\MyName\.m2\repository\org\apache\activemq\artemis-selector\1.1.0\artemis-selector-1.1.0.jar, C:\Users\MyName\.m2\repository\org\apache\activemq\artemis-journal\1.1.0\artemis-journal-1.1.0.jar, C:\Users\MyName\.m2\repository\org\apache\activemq\artemis-native\1.1.0\artemis-native-1.1.0.jar, C:\Users\MyName\.m2\repository\io\netty\netty-all\4.0.30.Final\netty-all-4.0.30.Final.jar, C:\Users\MyName\.m2\repository\org\apache\geronimo\specs\geronimo-jms_2.0_spec\1.0-alpha-2\geronimo-jms_2.0_spec-1.0-alpha-2.jar, C:\Users\MyName\.m2\repository\javax\inject\javax.inject\1\javax.inject-1.jar, C:\Users\MyName\.m2\repository\org\apache\activemq\activemq-jms-pool\5.13.1\activemq-jms-pool-5.13.1.jar, C:\Users\MyName\.m2\repository\org\apache\geronimo\specs\geronimo-jta_1.0.1B_spec\1.0.1\geronimo-jta_1.0.1B_spec-1.0.1.jar, C:\Users\MyName\.m2\repository\org\apache\activemq\artemis-jms-server\1.1.0\artemis-jms-server-1.1.0.jar, C:\Users\MyName\.m2\repository\org\apache\activemq\artemis-server\1.1.0\artemis-server-1.1.0.jar, C:\Users\MyName\.m2\repository\org\apache\activemq\artemis-service-extensions\1.1.0\artemis-service-extensions-1.1.0.jar, C:\Users\MyName\.m2\repository\org\apache\geronimo\specs\geronimo-ejb_3.0_spec\1.0.1\geronimo-ejb_3.0_spec-1.0.1.jar, C:\Users\MyName\.m2\repository\org\apache\geronimo\specs\geronimo-jta_1.1_spec\1.1.1\geronimo-jta_1.1_spec-1.1.1.jar, C:\Users\MyName\.m2\repository\org\apache\activemq\activemq-pool\5.13.1\activemq-pool-5.13.1.jar, C:\Users\MyName\.m2\repository\org\apache\logging\log4j\log4j-api\2.5\log4j-api-2.5.jar, C:\Users\MyName\.m2\repository\org\apache\logging\log4j\log4j-core\2.5\log4j-core-2.5.jar, C:\Users\MyName\.m2\repository\org\apache\httpcomponents\httpclient\4.5.1\httpclient-4.5.1.jar, C:\Users\MyName\.m2\repository\commons-codec\commons-codec\1.10\commons-codec-1.10.jar, C:\Users\MyName\.m2\repository\org\apache\tomcat\embed\tomcat-embed-core\8.0.32\tomcat-embed-core-8.0.32.jar, C:\Users\MyName\.m2\repository\org\apache\tomcat\embed\tomcat-embed-jasper\8.0.32\tomcat-embed-jasper-8.0.32.jar, C:\Users\MyName\.m2\repository\org\apache\tomcat\embed\tomcat-embed-el\8.0.32\tomcat-embed-el-8.0.32.jar, C:\Users\MyName\.m2\repository\org\eclipse\jdt\core\compiler\ecj\4.4.2\ecj-4.4.2.jar, C:\Users\MyName\.m2\repository\org\apache\tomcat\embed\tomcat-embed-logging-juli\8.0.32\tomcat-embed-logging-juli-8.0.32.jar, C:\Users\MyName\.m2\repository\org\apache\tomcat\tomcat-jdbc\8.0.32\tomcat-jdbc-8.0.32.jar, C:\Users\MyName\.m2\repository\org\apache\tomcat\tomcat-juli\8.0.32\tomcat-juli-8.0.32.jar, C:\Users\MyName\.m2\repository\org\apache\velocity\velocity\1.7\velocity-1.7.jar, C:\Users\MyName\.m2\repository\commons-collections\commons-collections\3.2.2\commons-collections-3.2.2.jar, C:\Users\MyName\.m2\repository\commons-lang\commons-lang\2.4\commons-lang-2.4.jar, C:\Users\MyName\.m2\repository\org\apache\velocity\velocity-tools\2.0\velocity-tools-2.0.jar, C:\Users\MyName\.m2\repository\commons-beanutils\commons-beanutils\1.9.2\commons-beanutils-1.9.2.jar, C:\Users\MyName\.m2\repository\commons-digester\commons-digester\2.1\commons-digester-2.1.jar, C:\Users\MyName\.m2\repository\commons-chain\commons-chain\1.1\commons-chain-1.1.jar, C:\Users\MyName\.m2\repository\commons-validator\commons-validator\1.3.1\commons-validator-1.3.1.jar, C:\Users\MyName\.m2\repository\dom4j\dom4j\1.1\dom4j-1.1.jar, C:\Users\MyName\.m2\repository\oro\oro\2.0.8\oro-2.0.8.jar, C:\Users\MyName\.m2\repository\sslext\sslext\1.2-0\sslext-1.2-0.jar, C:\Users\MyName\.m2\repository\org\apache\struts\struts-core\1.3.8\struts-core-1.3.8.jar, C:\Users\MyName\.m2\repository\antlr\antlr\2.7.7\antlr-2.7.7.jar, C:\Users\MyName\.m2\repository\org\apache\struts\struts-taglib\1.3.8\struts-taglib-1.3.8.jar, C:\Users\MyName\.m2\repository\org\apache\struts\struts-tiles\1.3.8\struts-tiles-1.3.8.jar, C:\Users\MyName\.m2\repository\org\codehaus\btm\btm\2.1.4\btm-2.1.4.jar, C:\Users\MyName\.m2\repository\javax\transaction\jta\1.1\jta-1.1.jar, C:\Users\MyName\.m2\repository\org\codehaus\groovy\groovy\2.4.6\groovy-2.4.6.jar, C:\Users\MyName\.m2\repository\org\codehaus\groovy\groovy-xml\2.4.6\groovy-xml-2.4.6.jar, C:\Users\MyName\.m2\repository\org\codehaus\groovy\groovy-templates\2.4.6\groovy-templates-2.4.6.jar, C:\Users\MyName\.m2\repository\org\crashub\crash.shell\1.3.2\crash.shell-1.3.2.jar, C:\Users\MyName\.m2\repository\org\eclipse\jetty\jetty-util\9.2.15.v20160210\jetty-util-9.2.15.v20160210.jar,

Looking for the differences between yours & mine the org.crashub:crash.cli stuff is definitely missing. The only crashub entry I have in that whole classpath is the crash.shell one.

The only other differences I can see in that excerpt (other than versions and ordering) are:

I am missing

com/couchbase/client/couchbase-spring-cache/2.0.0
xml-apis/xml-apis/1.0.b2
org/crashub/crash.cli/1.3.2

I have extra

org\jboss\logmanager\jboss-logmanager\1.5.3.Final

Any idea why the classpath is incomplete/different? Is this something I need to (or can) fix locally?

wilkinsona commented 8 years ago

Any idea why the classpath is incomplete/different?

Sounds like a Maven problem. Are you using the Maven wrapper to run the build, i.e. using mvnw.cmd in the root of the repository? It's unlikely, but possible, that the problem's due to the version of Maven you're using so it would be good to confirm that you're using the wrapper and therefore the same version as I am using.

If you are using the wrapper then we need to keep on digging. Earlier in the debug output, you should see a tree of all of the project's dependencies. Here's mine:

[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=4, ConflictMarker.markTime=2, ConflictMarker.nodeCount=944, ConflictIdSorter.graphTime=3, ConflictIdSorter.topsortTime=1, ConflictIdSorter.conflictIdCount=329, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=70, ConflictResolver.conflictItemCount=774, DefaultDependencyCollector.collectTime=1270, DefaultDependencyCollector.transformTime=81}
[DEBUG] org.springframework.boot:spring-boot-docs:jar:1.4.0.BUILD-SNAPSHOT
[DEBUG]    org.springframework.boot:spring-boot:jar:1.4.0.BUILD-SNAPSHOT:compile
[DEBUG]       org.springframework:spring-core:jar:4.3.0.RC1:compile
[DEBUG]          commons-logging:commons-logging:jar:1.2:compile
[DEBUG]       org.springframework:spring-context:jar:4.3.0.RC1:compile
[DEBUG]    org.springframework.boot:spring-boot-autoconfigure:jar:1.4.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework.boot:spring-boot-actuator:jar:1.4.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework.boot:spring-boot-loader:jar:1.4.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework.boot:spring-boot-loader-tools:jar:1.4.0.BUILD-SNAPSHOT:compile
[DEBUG]    ch.qos.logback:logback-classic:jar:1.1.7:compile
[DEBUG]       ch.qos.logback:logback-core:jar:1.1.7:compile
[DEBUG]    com.atomikos:transactions-jms:jar:3.9.3:compile
[DEBUG]    com.atomikos:transactions-jta:jar:3.9.3:compile
[DEBUG]       com.atomikos:transactions:jar:3.9.3:compile
[DEBUG]          com.atomikos:transactions-api:jar:3.9.3:compile
[DEBUG]             com.atomikos:atomikos-util:jar:3.9.3:compile
[DEBUG]    com.atomikos:transactions-jdbc:jar:3.9.3:compile
[DEBUG]    com.couchbase.client:java-client:jar:2.2.5:compile
[DEBUG]       com.couchbase.client:core-io:jar:1.2.5:compile
[DEBUG]          io.reactivex:rxjava:jar:1.0.15:compile
[DEBUG]    com.couchbase.client:couchbase-spring-cache:jar:2.0.0:compile
[DEBUG]    com.fasterxml.jackson.core:jackson-databind:jar:2.7.3:compile
[DEBUG]       com.fasterxml.jackson.core:jackson-annotations:jar:2.7.3:compile (version managed from 2.7.0 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       com.fasterxml.jackson.core:jackson-core:jar:2.7.3:compile
[DEBUG]    com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.7.3:compile
[DEBUG]       joda-time:joda-time:jar:2.9.3:compile (version managed from 2.4 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]    com.fasterxml.jackson.dataformat:jackson-dataformat-xml:jar:2.7.3:compile
[DEBUG]       com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.7.3:compile
[DEBUG]       org.codehaus.woodstox:stax2-api:jar:3.1.4:compile
[DEBUG]    com.google.code.gson:gson:jar:2.6.2:compile
[DEBUG]    com.googlecode.json-simple:json-simple:jar:1.1.1:compile
[DEBUG]    com.hazelcast:hazelcast:jar:3.6.1:compile
[DEBUG]    com.hazelcast:hazelcast-spring:jar:3.6.1:compile
[DEBUG]    com.samskivert:jmustache:jar:1.12:compile
[DEBUG]    com.sendgrid:sendgrid-java:jar:2.2.2:compile
[DEBUG]       org.apache.httpcomponents:httpcore:jar:4.4.4:compile (version managed from 4.3.2 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       org.apache.httpcomponents:httpmime:jar:4.5.2:compile (version managed from 4.3.4 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       com.sendgrid:smtpapi-java:jar:1.2.0:compile
[DEBUG]    com.timgroup:java-statsd-client:jar:3.1.0:compile
[DEBUG]    com.zaxxer:HikariCP:jar:2.4.5:compile
[DEBUG]    commons-dbcp:commons-dbcp:jar:1.4:compile
[DEBUG]       commons-pool:commons-pool:jar:1.6:compile (version managed from 1.5.4 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]    org.apache.commons:commons-pool2:jar:2.4.2:compile
[DEBUG]    org.assertj:assertj-core:jar:2.4.1:compile
[DEBUG]    io.dropwizard.metrics:metrics-core:jar:3.1.2:compile
[DEBUG]    io.projectreactor.spring:reactor-spring-context:jar:2.0.7.RELEASE:compile
[DEBUG]       com.jayway.jsonpath:json-path:jar:2.2.0:compile (version managed from 0.9.0 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]          net.minidev:json-smart:jar:2.2.1:compile
[DEBUG]             net.minidev:accessors-smart:jar:1.1:compile
[DEBUG]       io.projectreactor.spring:reactor-spring-core:jar:2.0.7.RELEASE:compile
[DEBUG]          io.projectreactor:reactor-bus:jar:2.0.7.RELEASE:compile
[DEBUG]             com.goldmansachs:gs-collections:jar:5.1.0:compile
[DEBUG]                com.goldmansachs:gs-collections-api:jar:5.1.0:compile
[DEBUG]             io.projectreactor:reactor-core:jar:2.0.7.RELEASE:compile
[DEBUG]                org.reactivestreams:reactive-streams:jar:1.0.0:compile
[DEBUG]          io.projectreactor:reactor-stream:jar:2.0.7.RELEASE:compile
[DEBUG]    io.undertow:undertow-servlet:jar:1.3.20.Final:compile
[DEBUG]       io.undertow:undertow-core:jar:1.3.20.Final:compile
[DEBUG]          org.jboss.xnio:xnio-api:jar:3.3.6.Final:compile
[DEBUG]          org.jboss.xnio:xnio-nio:jar:3.3.6.Final:runtime
[DEBUG]       org.jboss.spec.javax.annotation:jboss-annotations-api_1.2_spec:jar:1.0.0.Final:compile
[DEBUG]    io.undertow:undertow-websockets-jsr:jar:1.3.20.Final:compile
[DEBUG]       org.jboss.spec.javax.websocket:jboss-websocket-api_1.1_spec:jar:1.1.0.Final:compile
[DEBUG]    javax.jms:jms-api:jar:1.1-rev-1:compile
[DEBUG]    javax.mail:javax.mail-api:jar:1.5.5:compile
[DEBUG]    javax.servlet:javax.servlet-api:jar:3.1.0:compile
[DEBUG]    junit:junit:jar:4.12:compile
[DEBUG]       org.hamcrest:hamcrest-core:jar:1.3:compile
[DEBUG]    net.sf.ehcache:ehcache:jar:2.10.1:compile
[DEBUG]    nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:jar:1.3.3:compile
[DEBUG]       org.thymeleaf:thymeleaf:jar:2.1.4.RELEASE:compile
[DEBUG]          ognl:ognl:jar:3.0.8:compile
[DEBUG]          org.unbescape:unbescape:jar:1.1.0.RELEASE:compile
[DEBUG]    org.apache.activemq:activemq-client:jar:5.13.2:compile
[DEBUG]       org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:compile
[DEBUG]       org.fusesource.hawtbuf:hawtbuf:jar:1.11:compile
[DEBUG]       org.apache.geronimo.specs:geronimo-j2ee-management_1.1_spec:jar:1.0.1:compile
[DEBUG]    org.apache.activemq:artemis-jms-client:jar:1.2.0:compile
[DEBUG]       org.apache.activemq:artemis-core-client:jar:1.2.0:compile
[DEBUG]          org.apache.activemq:artemis-commons:jar:1.2.0:compile
[DEBUG]          io.netty:netty-all:jar:4.0.32.Final:compile
[DEBUG]       org.apache.activemq:artemis-selector:jar:1.2.0:compile
[DEBUG]       org.apache.geronimo.specs:geronimo-jms_2.0_spec:jar:1.0-alpha-2:compile
[DEBUG]       javax.inject:javax.inject:jar:1:compile
[DEBUG]    org.apache.activemq:activemq-jms-pool:jar:5.13.2:compile
[DEBUG]       org.apache.geronimo.specs:geronimo-jta_1.0.1B_spec:jar:1.0.1:compile
[DEBUG]    org.apache.activemq:artemis-jms-server:jar:1.2.0:compile
[DEBUG]       org.apache.activemq:artemis-server:jar:1.2.0:compile
[DEBUG]          org.apache.activemq:artemis-journal:jar:1.2.0:compile
[DEBUG]             org.apache.activemq:artemis-native:jar:1.2.0:compile
[DEBUG]       org.apache.activemq:artemis-service-extensions:jar:1.2.0:compile
[DEBUG]       org.apache.geronimo.specs:geronimo-ejb_3.0_spec:jar:1.0.1:compile
[DEBUG]       org.apache.geronimo.specs:geronimo-jta_1.1_spec:jar:1.1.1:compile
[DEBUG]    org.apache.activemq:activemq-pool:jar:5.13.2:compile
[DEBUG]    org.apache.logging.log4j:log4j-api:jar:2.5:compile
[DEBUG]    org.apache.logging.log4j:log4j-core:jar:2.5:compile
[DEBUG]    org.apache.httpcomponents:httpclient:jar:4.5.2:compile
[DEBUG]       commons-codec:commons-codec:jar:1.10:compile (version managed from 1.9 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]    org.apache.tomcat.embed:tomcat-embed-core:jar:8.0.33:compile
[DEBUG]    org.apache.tomcat.embed:tomcat-embed-jasper:jar:8.0.33:compile
[DEBUG]       org.apache.tomcat.embed:tomcat-embed-el:jar:8.0.33:compile
[DEBUG]       org.eclipse.jdt.core.compiler:ecj:jar:4.5:compile
[DEBUG]    org.apache.tomcat.embed:tomcat-embed-logging-juli:jar:8.0.33:compile
[DEBUG]    org.apache.tomcat:tomcat-jdbc:jar:8.0.33:compile
[DEBUG]       org.apache.tomcat:tomcat-juli:jar:8.0.33:compile
[DEBUG]    org.apache.velocity:velocity:jar:1.7:compile
[DEBUG]       commons-collections:commons-collections:jar:3.2.2:compile (version managed from 3.2.1 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       commons-lang:commons-lang:jar:2.4:compile
[DEBUG]    org.apache.velocity:velocity-tools:jar:2.0:compile
[DEBUG]       commons-beanutils:commons-beanutils:jar:1.9.2:compile (version managed from 1.7.0 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       commons-digester:commons-digester:jar:2.1:compile (version managed from 1.8 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       commons-chain:commons-chain:jar:1.1:compile
[DEBUG]       commons-validator:commons-validator:jar:1.3.1:compile
[DEBUG]       dom4j:dom4j:jar:1.6.1:compile (version managed from 1.1 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]          xml-apis:xml-apis:jar:1.0.b2:compile
[DEBUG]       oro:oro:jar:2.0.8:compile
[DEBUG]       sslext:sslext:jar:1.2-0:compile
[DEBUG]       org.apache.struts:struts-core:jar:1.3.8:compile
[DEBUG]          antlr:antlr:jar:2.7.7:compile (version managed from 2.7.2 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       org.apache.struts:struts-taglib:jar:1.3.8:compile
[DEBUG]       org.apache.struts:struts-tiles:jar:1.3.8:compile
[DEBUG]    org.codehaus.btm:btm:jar:2.1.4:compile
[DEBUG]       javax.transaction:jta:jar:1.1:compile
[DEBUG]    org.codehaus.groovy:groovy:jar:2.4.6:compile
[DEBUG]    org.codehaus.groovy:groovy-xml:jar:2.4.6:compile
[DEBUG]    org.codehaus.groovy:groovy-templates:jar:2.4.6:compile
[DEBUG]    org.crashub:crash.shell:jar:1.3.2:compile
[DEBUG]       org.crashub:crash.cli:jar:1.3.2:compile
[DEBUG]    org.eclipse.jetty:jetty-util:jar:9.2.15.v20160210:compile
[DEBUG]    org.eclipse.jetty:jetty-servlets:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty:jetty-continuation:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty:jetty-http:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty:jetty-io:jar:9.2.15.v20160210:compile
[DEBUG]    org.eclipse.jetty:jetty-webapp:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty:jetty-xml:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty:jetty-servlet:jar:9.2.15.v20160210:compile
[DEBUG]          org.eclipse.jetty:jetty-security:jar:9.2.15.v20160210:compile
[DEBUG]             org.eclipse.jetty:jetty-server:jar:9.2.15.v20160210:compile
[DEBUG]    org.eclipse.jetty.websocket:javax-websocket-server-impl:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty:jetty-annotations:jar:9.2.15.v20160210:compile
[DEBUG]          org.eclipse.jetty:jetty-plus:jar:9.2.15.v20160210:compile
[DEBUG]             org.eclipse.jetty:jetty-jndi:jar:9.2.15.v20160210:compile
[DEBUG]          javax.annotation:javax.annotation-api:jar:1.2:compile
[DEBUG]          org.ow2.asm:asm:jar:5.0.1:compile
[DEBUG]          org.ow2.asm:asm-commons:jar:5.0.1:compile
[DEBUG]             org.ow2.asm:asm-tree:jar:5.0.1:compile
[DEBUG]       org.eclipse.jetty.websocket:javax-websocket-client-impl:jar:9.2.15.v20160210:compile
[DEBUG]          org.eclipse.jetty.websocket:websocket-client:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty.websocket:websocket-server:jar:9.2.15.v20160210:compile
[DEBUG]          org.eclipse.jetty.websocket:websocket-common:jar:9.2.15.v20160210:compile
[DEBUG]             org.eclipse.jetty.websocket:websocket-api:jar:9.2.15.v20160210:compile
[DEBUG]          org.eclipse.jetty.websocket:websocket-servlet:jar:9.2.15.v20160210:compile
[DEBUG]       javax.websocket:javax.websocket-api:jar:1.0:compile
[DEBUG]    org.flywaydb:flyway-core:jar:3.2.1:compile
[DEBUG]    org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.22.2:compile
[DEBUG]       org.glassfish.hk2.external:javax.inject:jar:2.4.0-b34:compile
[DEBUG]       org.glassfish.jersey.core:jersey-common:jar:2.22.2:compile
[DEBUG]          org.glassfish.jersey.bundles.repackaged:jersey-guava:jar:2.22.2:compile
[DEBUG]          org.glassfish.hk2:hk2-api:jar:2.4.0-b34:compile
[DEBUG]             org.glassfish.hk2:hk2-utils:jar:2.4.0-b34:compile
[DEBUG]             org.glassfish.hk2.external:aopalliance-repackaged:jar:2.4.0-b34:compile
[DEBUG]          org.glassfish.hk2:hk2-locator:jar:2.4.0-b34:compile
[DEBUG]          org.glassfish.hk2:osgi-resource-locator:jar:1.0.1:compile
[DEBUG]       org.glassfish.jersey.core:jersey-server:jar:2.22.2:compile
[DEBUG]          org.glassfish.jersey.core:jersey-client:jar:2.22.2:compile
[DEBUG]          org.glassfish.jersey.media:jersey-media-jaxb:jar:2.22.2:compile
[DEBUG]       javax.ws.rs:javax.ws.rs-api:jar:2.0.1:compile
[DEBUG]    org.jboss:jboss-transaction-spi:jar:7.3.0.Final:compile
[DEBUG]       org.jboss.spec.javax.resource:jboss-connector-api_1.5_spec:jar:1.0.0.Final:compile
[DEBUG]          org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:compile
[DEBUG]       org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:jar:1.0.0.Alpha3:compile
[DEBUG]    org.jboss.logging:jboss-logging:jar:3.3.0.Final:compile
[DEBUG]    org.jboss.narayana.jta:jdbc:jar:5.3.2.Final:compile
[DEBUG]    org.jboss.narayana.jta:jms:jar:5.3.2.Final:compile
[DEBUG]    org.jboss.narayana.jta:jta:jar:5.3.2.Final:compile
[DEBUG]       org.jboss.narayana:common:jar:5.3.2.Final:compile
[DEBUG]       org.jboss.narayana.arjunacore:arjuna:jar:5.3.2.Final:compile
[DEBUG]          sun.jdk:jconsole:jar:jdk:system
[DEBUG]    org.jboss.narayana.jts:narayana-jts-integration:jar:5.3.2.Final:compile
[DEBUG]    org.hibernate:hibernate-entitymanager:jar:5.1.0.Final:compile
[DEBUG]       org.hibernate:hibernate-core:jar:5.1.0.Final:compile
[DEBUG]          org.jboss:jandex:jar:2.0.0.Final:compile
[DEBUG]       org.hibernate.common:hibernate-commons-annotations:jar:5.0.1.Final:compile
[DEBUG]       org.hibernate.javax.persistence:hibernate-jpa-2.1-api:jar:1.0.0.Final:compile
[DEBUG]       org.javassist:javassist:jar:3.18.1-GA:compile (version managed from 3.20.0-GA by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]    org.hibernate:hibernate-validator:jar:5.2.4.Final:compile
[DEBUG]       javax.validation:validation-api:jar:1.1.0.Final:compile
[DEBUG]       com.fasterxml:classmate:jar:1.1.0:compile
[DEBUG]    org.hornetq:hornetq-jms-server:jar:2.4.7.Final:compile
[DEBUG]       org.hornetq:hornetq-core-client:jar:2.4.7.Final:compile
[DEBUG]          org.hornetq:hornetq-commons:jar:2.4.7.Final:compile
[DEBUG]          org.hornetq:hornetq-journal:jar:2.4.7.Final:compile
[DEBUG]             org.hornetq:hornetq-native:jar:2.4.7.Final:compile
[DEBUG]       org.hornetq:hornetq-jms-client:jar:2.4.7.Final:compile
[DEBUG]       org.hornetq:hornetq-server:jar:2.4.7.Final:compile
[DEBUG]       org.jboss.spec.javax.jms:jboss-jms-api_2.0_spec:jar:1.0.0.Final:compile
[DEBUG]       org.jboss.naming:jnpserver:jar:5.0.3.GA:compile
[DEBUG]          org.jboss:jboss-common-core:jar:2.2.10.GA:compile
[DEBUG]    org.infinispan:infinispan-jcache:jar:8.1.3.Final:compile
[DEBUG]       org.infinispan:infinispan-core:jar:8.1.3.Final:compile
[DEBUG]          org.infinispan:infinispan-commons:jar:8.1.3.Final:compile
[DEBUG]       org.infinispan:infinispan-jcache-commons:jar:8.1.3.Final:compile
[DEBUG]       org.infinispan:infinispan-cdi-embedded:jar:8.1.3.Final:compile
[DEBUG]          org.infinispan:infinispan-cdi-common:jar:8.1.3.Final:compile
[DEBUG]    org.infinispan:infinispan-spring4-embedded:jar:8.1.3.Final:compile
[DEBUG]       org.infinispan:infinispan-spring4-common:jar:8.1.3.Final:compile
[DEBUG]       org.jgroups:jgroups:jar:3.6.4.Final:compile
[DEBUG]       org.jboss.marshalling:jboss-marshalling-osgi:jar:1.4.10.Final:compile
[DEBUG]    org.json:json:jar:20140107:compile
[DEBUG]    org.jolokia:jolokia-core:jar:1.3.3:compile
[DEBUG]    org.liquibase:liquibase-core:jar:3.4.2:compile
[DEBUG]    org.slf4j:slf4j-api:jar:1.7.21:compile
[DEBUG]    org.slf4j:jul-to-slf4j:jar:1.7.21:compile
[DEBUG]    org.springframework:spring-context-support:jar:4.3.0.RC1:compile
[DEBUG]       org.springframework:spring-beans:jar:4.3.0.RC1:compile
[DEBUG]    org.springframework:spring-jms:jar:4.3.0.RC1:compile
[DEBUG]       org.springframework:spring-aop:jar:4.3.0.RC1:compile
[DEBUG]       org.springframework:spring-tx:jar:4.3.0.RC1:compile
[DEBUG]    org.springframework:spring-messaging:jar:4.3.0.RC1:compile
[DEBUG]    org.springframework:spring-orm:jar:4.3.0.RC1:compile
[DEBUG]       org.springframework:spring-jdbc:jar:4.3.0.RC1:compile
[DEBUG]    org.springframework:spring-test:jar:4.3.0.RC1:compile
[DEBUG]    org.springframework:spring-web:jar:4.3.0.RC1:compile
[DEBUG]    org.springframework:spring-webmvc:jar:4.3.0.RC1:compile
[DEBUG]       org.springframework:spring-expression:jar:4.3.0.RC1:compile
[DEBUG]    org.springframework.amqp:spring-rabbit:jar:1.6.0.M2:compile
[DEBUG]       org.springframework.amqp:spring-amqp:jar:1.6.0.M2:compile
[DEBUG]       com.rabbitmq:amqp-client:jar:3.6.0:compile
[DEBUG]       org.springframework.retry:spring-retry:jar:1.1.2.RELEASE:compile
[DEBUG]       com.rabbitmq:http-client:jar:1.0.0.RELEASE:compile
[DEBUG]    org.springframework.batch:spring-batch-core:jar:3.0.6.RELEASE:compile
[DEBUG]       com.ibm.jbatch:com.ibm.jbatch-tck-spi:jar:1.0:compile
[DEBUG]          javax.batch:javax.batch-api:jar:1.0:compile
[DEBUG]       com.thoughtworks.xstream:xstream:jar:1.4.7:compile
[DEBUG]          xmlpull:xmlpull:jar:1.1.3.1:compile
[DEBUG]          xpp3:xpp3_min:jar:1.1.4c:compile
[DEBUG]       org.codehaus.jettison:jettison:jar:1.2:compile
[DEBUG]       org.springframework.batch:spring-batch-infrastructure:jar:3.0.6.RELEASE:compile
[DEBUG]    org.springframework.cloud:spring-cloud-core:jar:1.2.2.RELEASE:compile
[DEBUG]    org.springframework.cloud:spring-cloud-spring-service-connector:jar:1.2.2.RELEASE:compile
[DEBUG]    org.springframework.integration:spring-integration-core:jar:4.3.0.M1:compile
[DEBUG]    org.springframework.integration:spring-integration-jmx:jar:4.3.0.M1:compile
[DEBUG]    org.springframework.security:spring-security-config:jar:4.0.4.RELEASE:compile
[DEBUG]       aopalliance:aopalliance:jar:1.0:compile
[DEBUG]       org.springframework.security:spring-security-core:jar:4.0.4.RELEASE:compile
[DEBUG]    org.springframework.session:spring-session:jar:1.2.0.RC2:compile
[DEBUG]    org.springframework.social:spring-social-facebook:jar:2.0.3.RELEASE:compile
[DEBUG]       org.springframework.social:spring-social-core:jar:1.1.4.RELEASE:compile
[DEBUG]    org.springframework.social:spring-social-linkedin:jar:1.0.2.RELEASE:compile
[DEBUG]    org.springframework.social:spring-social-twitter:jar:1.1.2.RELEASE:compile
[DEBUG]       org.springframework.security:spring-security-crypto:jar:4.0.4.RELEASE:compile (version managed from 3.2.8.RELEASE by org.springframework.security:spring-security-bom:4.0.4.RELEASE)
[DEBUG]    org.springframework.data:spring-data-cassandra:jar:1.4.1.RELEASE:compile
[DEBUG]       org.springframework.data:spring-cql:jar:1.4.1.RELEASE:compile
[DEBUG]          com.google.guava:guava:jar:18.0:compile (version managed from 19.0 by org.springframework.boot:spring-boot-parent:[unknown-version])
[DEBUG]       org.springframework.data:spring-data-commons:jar:1.12.1.RELEASE:compile
[DEBUG]       com.datastax.cassandra:cassandra-driver-dse:jar:2.1.9:compile (version managed from 2.1.7.1 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]          com.datastax.cassandra:cassandra-driver-core:jar:2.1.9:compile
[DEBUG]             com.codahale.metrics:metrics-core:jar:3.0.2:compile
[DEBUG]       org.slf4j:jcl-over-slf4j:jar:1.7.21:runtime (version managed from 1.7.19 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]    org.springframework.data:spring-data-couchbase:jar:2.1.1.RELEASE:compile
[DEBUG]    org.springframework.data:spring-data-elasticsearch:jar:2.0.1.RELEASE:compile
[DEBUG]       org.elasticsearch:elasticsearch:jar:2.2.2:compile (version managed from 2.2.0 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]          org.apache.lucene:lucene-core:jar:5.4.1:compile
[DEBUG]          org.apache.lucene:lucene-backward-codecs:jar:5.4.1:compile
[DEBUG]          org.apache.lucene:lucene-analyzers-common:jar:5.4.1:compile
[DEBUG]          org.apache.lucene:lucene-queries:jar:5.4.1:compile
[DEBUG]          org.apache.lucene:lucene-memory:jar:5.4.1:compile
[DEBUG]          org.apache.lucene:lucene-highlighter:jar:5.4.1:compile
[DEBUG]          org.apache.lucene:lucene-queryparser:jar:5.4.1:compile
[DEBUG]             org.apache.lucene:lucene-sandbox:jar:5.4.1:compile
[DEBUG]          org.apache.lucene:lucene-suggest:jar:5.4.1:compile
[DEBUG]             org.apache.lucene:lucene-misc:jar:5.4.1:compile
[DEBUG]          org.apache.lucene:lucene-join:jar:5.4.1:compile
[DEBUG]             org.apache.lucene:lucene-grouping:jar:5.4.1:compile
[DEBUG]          org.apache.lucene:lucene-spatial:jar:5.4.1:compile
[DEBUG]             org.apache.lucene:lucene-spatial3d:jar:5.4.1:compile
[DEBUG]             com.spatial4j:spatial4j:jar:0.5:compile
[DEBUG]          org.elasticsearch:securesm:jar:1.0:compile
[DEBUG]          com.carrotsearch:hppc:jar:0.7.1:compile
[DEBUG]          org.joda:joda-convert:jar:1.2:compile
[DEBUG]          com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.6.2:compile
[DEBUG]          com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.7.3:compile (version managed from 2.6.2 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]          com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.6.2:compile
[DEBUG]          io.netty:netty:jar:3.10.5.Final:compile
[DEBUG]          com.ning:compress-lzf:jar:1.0.2:compile
[DEBUG]          com.tdunning:t-digest:jar:3.0:compile
[DEBUG]          org.hdrhistogram:HdrHistogram:jar:2.1.6:compile
[DEBUG]          commons-cli:commons-cli:jar:1.3.1:compile
[DEBUG]          com.twitter:jsr166e:jar:1.1.0:compile
[DEBUG]    org.springframework.data:spring-data-jpa:jar:1.10.1.RELEASE:compile
[DEBUG]       org.aspectj:aspectjrt:jar:1.8.9:compile
[DEBUG]    org.springframework.data:spring-data-mongodb:jar:1.9.1.RELEASE:compile
[DEBUG]       org.mongodb:mongo-java-driver:jar:2.14.2:compile (version managed from 2.14.0 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]    org.springframework.data:spring-data-neo4j:jar:4.1.1.RELEASE:compile
[DEBUG]       org.neo4j:neo4j-ogm-core:jar:2.0.0:compile (version managed from 2.0.1 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]          org.neo4j:neo4j-ogm-api:jar:2.0.0:compile (version managed from 2.0.0-SNAPSHOT by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]          org.neo4j:neo4j-ogm-compiler:jar:2.0.0:compile (version managed from 2.0.0-SNAPSHOT by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       org.neo4j:neo4j-ogm-http-driver:jar:2.0.0:compile (version managed from 2.0.1 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]          commons-io:commons-io:jar:2.4:compile
[DEBUG]    org.springframework.data:spring-data-redis:jar:1.7.1.RELEASE:compile
[DEBUG]       org.springframework.data:spring-data-keyvalue:jar:1.1.1.RELEASE:compile
[DEBUG]       org.springframework:spring-oxm:jar:4.3.0.RC1:compile (version managed from 4.2.5.RELEASE by org.springframework:spring-framework-bom:4.3.0.RC1)
[DEBUG]    org.springframework.data:spring-data-rest-core:jar:2.5.1.RELEASE:compile
[DEBUG]       org.springframework.plugin:spring-plugin-core:jar:1.2.0.RELEASE:compile
[DEBUG]       org.atteo:evo-inflector:jar:1.2.1:compile
[DEBUG]    org.springframework.data:spring-data-rest-webmvc:jar:2.5.1.RELEASE:compile
[DEBUG]    org.springframework.data:spring-data-solr:jar:2.0.1.RELEASE:compile
[DEBUG]       org.apache.commons:commons-lang3:jar:3.1:compile
[DEBUG]       org.apache.solr:solr-solrj:jar:5.5.0:compile
[DEBUG]          org.apache.zookeeper:zookeeper:jar:3.4.6:compile
[DEBUG]          org.codehaus.woodstox:woodstox-core-asl:jar:4.4.1:compile
[DEBUG]          org.noggit:noggit:jar:0.6:compile
[DEBUG]    org.springframework.hateoas:spring-hateoas:jar:0.19.0.RELEASE:compile
[DEBUG]    org.springframework.mobile:spring-mobile-device:jar:1.1.5.RELEASE:compile
[DEBUG]    org.springframework.security.oauth:spring-security-oauth2:jar:2.0.9.RELEASE:compile
[DEBUG]       org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile
[DEBUG]          org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile
[DEBUG]    org.springframework.security:spring-security-web:jar:4.0.4.RELEASE:compile
[DEBUG]    org.springframework.social:spring-social-config:jar:1.1.4.RELEASE:compile
[DEBUG]       org.springframework.social:spring-social-web:jar:1.1.4.RELEASE:compile
[DEBUG]    org.thymeleaf:thymeleaf-spring4:jar:2.1.4.RELEASE:compile
[DEBUG]    org.thymeleaf.extras:thymeleaf-extras-conditionalcomments:jar:2.1.1.RELEASE:compile
[DEBUG]       org.attoparser:attoparser:jar:1.3:compile
[DEBUG]    com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute:jar:1.3:compile
[DEBUG]    org.thymeleaf.extras:thymeleaf-extras-springsecurity4:jar:2.1.2.RELEASE:compile
[DEBUG]    org.yaml:snakeyaml:jar:1.17:compile
[DEBUG]    redis.clients:jedis:jar:2.8.1:compile
[DEBUG]    org.mockito:mockito-core:jar:1.10.19:test
[DEBUG]       org.objenesis:objenesis:jar:2.1:test
[DEBUG]    org.hamcrest:hamcrest-library:jar:1.3:test

Note that crash.cli is nested beneath crash.shell:

[DEBUG]    org.crashub:crash.shell:jar:1.3.2:compile
[DEBUG]       org.crashub:crash.cli:jar:1.3.2:compile

What does that look like for your build?

daveyahoo commented 8 years ago

Yes, I am using the Maven wrapper mvnw.cmd provided in the spring-boot-master repository (from about 2016-04-04).

For my build that dependency tree looks like this looks like this:

[DEBUG] org.springframework.boot:spring-boot-docs:jar:1.4.0.BUILD-SNAPSHOT
[DEBUG]    org.springframework.boot:spring-boot:jar:1.4.0.BUILD-SNAPSHOT:compile
[DEBUG]       org.springframework:spring-core:jar:4.3.0.BUILD-SNAPSHOT:compile (version managed from 4.3.0.RC1 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]          commons-logging:commons-logging:jar:1.2:compile
[DEBUG]       org.springframework:spring-context:jar:4.3.0.BUILD-SNAPSHOT:compile (version managed from 4.3.0.RC1 by org.springframework:spring-framework-bom:4.3.0.BUILD-SNAPSHOT)
[DEBUG]    org.springframework.boot:spring-boot-autoconfigure:jar:1.4.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework.boot:spring-boot-actuator:jar:1.4.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework.boot:spring-boot-loader:jar:1.4.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework.boot:spring-boot-loader-tools:jar:1.4.0.BUILD-SNAPSHOT:compile
[DEBUG]    ch.qos.logback:logback-classic:jar:1.1.6:compile
[DEBUG]       ch.qos.logback:logback-core:jar:1.1.6:compile
[DEBUG]    com.atomikos:transactions-jms:jar:3.9.3:compile
[DEBUG]    com.atomikos:transactions-jta:jar:3.9.3:compile
[DEBUG]       com.atomikos:transactions:jar:3.9.3:compile
[DEBUG]          com.atomikos:transactions-api:jar:3.9.3:compile
[DEBUG]             com.atomikos:atomikos-util:jar:3.9.3:compile
[DEBUG]    com.atomikos:transactions-jdbc:jar:3.9.3:compile
[DEBUG]    com.fasterxml.jackson.core:jackson-databind:jar:2.7.2:compile
[DEBUG]       com.fasterxml.jackson.core:jackson-annotations:jar:2.7.2:compile (version managed from 2.7.0 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       com.fasterxml.jackson.core:jackson-core:jar:2.7.2:compile
[DEBUG]    com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.7.2:compile
[DEBUG]       joda-time:joda-time:jar:2.9.2:compile (version managed from 2.4 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]    com.fasterxml.jackson.dataformat:jackson-dataformat-xml:jar:2.7.2:compile
[DEBUG]       com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.7.2:compile
[DEBUG]       org.codehaus.woodstox:stax2-api:jar:3.1.4:compile
[DEBUG]    com.google.code.gson:gson:jar:2.6.2:compile
[DEBUG]    com.googlecode.json-simple:json-simple:jar:1.1.1:compile
[DEBUG]    com.hazelcast:hazelcast:jar:3.6:compile
[DEBUG]    com.hazelcast:hazelcast-spring:jar:3.6:compile
[DEBUG]    com.samskivert:jmustache:jar:1.12:compile
[DEBUG]    com.sendgrid:sendgrid-java:jar:2.2.2:compile
[DEBUG]       org.apache.httpcomponents:httpcore:jar:4.4.4:compile (version managed from 4.3.2 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       org.apache.httpcomponents:httpmime:jar:4.5.1:compile (version managed from 4.3.4 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       com.sendgrid:smtpapi-java:jar:1.2.0:compile
[DEBUG]    com.timgroup:java-statsd-client:jar:3.1.0:compile
[DEBUG]    com.zaxxer:HikariCP:jar:2.4.3:compile
[DEBUG]    commons-dbcp:commons-dbcp:jar:1.4:compile
[DEBUG]       commons-pool:commons-pool:jar:1.6:compile (version managed from 1.5.4 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]    org.apache.commons:commons-pool2:jar:2.4.2:compile
[DEBUG]    org.assertj:assertj-core:jar:2.3.0:compile
[DEBUG]    io.dropwizard.metrics:metrics-core:jar:3.1.2:compile
[DEBUG]    io.projectreactor.spring:reactor-spring-context:jar:2.0.7.RELEASE:compile
[DEBUG]       com.jayway.jsonpath:json-path:jar:2.1.0:compile (version managed from 0.9.0 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]          net.minidev:json-smart:jar:2.2:compile
[DEBUG]             net.minidev:accessors-smart:jar:1.1:compile
[DEBUG]       io.projectreactor.spring:reactor-spring-core:jar:2.0.7.RELEASE:compile
[DEBUG]          io.projectreactor:reactor-bus:jar:2.0.7.RELEASE:compile
[DEBUG]             com.goldmansachs:gs-collections:jar:5.1.0:compile
[DEBUG]                com.goldmansachs:gs-collections-api:jar:5.1.0:compile
[DEBUG]             io.projectreactor:reactor-core:jar:2.0.7.RELEASE:compile
[DEBUG]                org.reactivestreams:reactive-streams:jar:1.0.0:compile
[DEBUG]          io.projectreactor:reactor-stream:jar:2.0.7.RELEASE:compile
[DEBUG]    io.undertow:undertow-servlet:jar:1.3.19.Final:compile
[DEBUG]       io.undertow:undertow-core:jar:1.3.19.Final:compile
[DEBUG]          org.jboss.xnio:xnio-api:jar:3.3.4.Final:compile
[DEBUG]          org.jboss.xnio:xnio-nio:jar:3.3.4.Final:runtime
[DEBUG]       org.jboss.spec.javax.annotation:jboss-annotations-api_1.2_spec:jar:1.0.0.Final:compile
[DEBUG]    io.undertow:undertow-websockets-jsr:jar:1.3.19.Final:compile
[DEBUG]       org.jboss.spec.javax.websocket:jboss-websocket-api_1.1_spec:jar:1.1.0.Final:compile
[DEBUG]    javax.jms:jms-api:jar:1.1-rev-1:compile
[DEBUG]    javax.mail:javax.mail-api:jar:1.5.5:compile
[DEBUG]    javax.servlet:javax.servlet-api:jar:3.1.0:compile
[DEBUG]    junit:junit:jar:4.12:compile
[DEBUG]       org.hamcrest:hamcrest-core:jar:1.3:compile
[DEBUG]    net.sf.ehcache:ehcache:jar:2.10.1:compile
[DEBUG]    nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:jar:1.3.3:compile
[DEBUG]       org.thymeleaf:thymeleaf:jar:2.1.4.RELEASE:compile
[DEBUG]          ognl:ognl:jar:3.0.8:compile
[DEBUG]          org.unbescape:unbescape:jar:1.1.0.RELEASE:compile
[DEBUG]    org.apache.activemq:activemq-client:jar:5.13.1:compile
[DEBUG]       org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:compile
[DEBUG]       org.fusesource.hawtbuf:hawtbuf:jar:1.11:compile
[DEBUG]       org.apache.geronimo.specs:geronimo-j2ee-management_1.1_spec:jar:1.0.1:compile
[DEBUG]    org.apache.activemq:artemis-jms-client:jar:1.1.0:compile
[DEBUG]       org.apache.activemq:artemis-core-client:jar:1.1.0:compile
[DEBUG]          org.apache.activemq:artemis-commons:jar:1.1.0:compile
[DEBUG]             org.jboss.logmanager:jboss-logmanager:jar:1.5.3.Final:compile
[DEBUG]          org.apache.activemq:artemis-selector:jar:1.1.0:compile
[DEBUG]          org.apache.activemq:artemis-journal:jar:1.1.0:compile
[DEBUG]             org.apache.activemq:artemis-native:jar:1.1.0:compile
[DEBUG]          io.netty:netty-all:jar:4.0.30.Final:compile
[DEBUG]       org.apache.geronimo.specs:geronimo-jms_2.0_spec:jar:1.0-alpha-2:compile
[DEBUG]       javax.inject:javax.inject:jar:1:compile
[DEBUG]    org.apache.activemq:activemq-jms-pool:jar:5.13.1:compile
[DEBUG]       org.apache.geronimo.specs:geronimo-jta_1.0.1B_spec:jar:1.0.1:compile
[DEBUG]    org.apache.activemq:artemis-jms-server:jar:1.1.0:compile
[DEBUG]       org.apache.activemq:artemis-server:jar:1.1.0:compile
[DEBUG]       org.apache.activemq:artemis-service-extensions:jar:1.1.0:compile
[DEBUG]       org.apache.geronimo.specs:geronimo-ejb_3.0_spec:jar:1.0.1:compile
[DEBUG]       org.apache.geronimo.specs:geronimo-jta_1.1_spec:jar:1.1.1:compile
[DEBUG]    org.apache.activemq:activemq-pool:jar:5.13.1:compile
[DEBUG]    org.apache.logging.log4j:log4j-api:jar:2.5:compile
[DEBUG]    org.apache.logging.log4j:log4j-core:jar:2.5:compile
[DEBUG]    org.apache.httpcomponents:httpclient:jar:4.5.1:compile
[DEBUG]       commons-codec:commons-codec:jar:1.10:compile (version managed from 1.9 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]    org.apache.tomcat.embed:tomcat-embed-core:jar:8.0.32:compile
[DEBUG]    org.apache.tomcat.embed:tomcat-embed-jasper:jar:8.0.32:compile
[DEBUG]       org.apache.tomcat.embed:tomcat-embed-el:jar:8.0.32:compile
[DEBUG]       org.eclipse.jdt.core.compiler:ecj:jar:4.4.2:compile
[DEBUG]    org.apache.tomcat.embed:tomcat-embed-logging-juli:jar:8.0.32:compile
[DEBUG]    org.apache.tomcat:tomcat-jdbc:jar:8.0.32:compile
[DEBUG]       org.apache.tomcat:tomcat-juli:jar:8.0.32:compile
[DEBUG]    org.apache.velocity:velocity:jar:1.7:compile
[DEBUG]       commons-collections:commons-collections:jar:3.2.2:compile (version managed from 3.2.1 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       commons-lang:commons-lang:jar:2.4:compile
[DEBUG]    org.apache.velocity:velocity-tools:jar:2.0:compile
[DEBUG]       commons-beanutils:commons-beanutils:jar:1.9.2:compile (version managed from 1.7.0 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       commons-digester:commons-digester:jar:2.1:compile (version managed from 1.8 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       commons-chain:commons-chain:jar:1.1:compile
[DEBUG]       commons-validator:commons-validator:jar:1.3.1:compile
[DEBUG]       dom4j:dom4j:jar:1.1:compile
[DEBUG]       oro:oro:jar:2.0.8:compile
[DEBUG]       sslext:sslext:jar:1.2-0:compile
[DEBUG]       org.apache.struts:struts-core:jar:1.3.8:compile
[DEBUG]          antlr:antlr:jar:2.7.7:compile (version managed from 2.7.2 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       org.apache.struts:struts-taglib:jar:1.3.8:compile
[DEBUG]       org.apache.struts:struts-tiles:jar:1.3.8:compile
[DEBUG]    org.codehaus.btm:btm:jar:2.1.4:compile
[DEBUG]       javax.transaction:jta:jar:1.1:compile
[DEBUG]    org.codehaus.groovy:groovy:jar:2.4.6:compile
[DEBUG]    org.codehaus.groovy:groovy-xml:jar:2.4.6:compile
[DEBUG]    org.codehaus.groovy:groovy-templates:jar:2.4.6:compile
[DEBUG]    org.crashub:crash.shell:jar:1.3.2:compile
[DEBUG]    org.eclipse.jetty:jetty-util:jar:9.2.15.v20160210:compile
[DEBUG]    org.eclipse.jetty:jetty-servlets:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty:jetty-continuation:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty:jetty-http:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty:jetty-io:jar:9.2.15.v20160210:compile
[DEBUG]    org.eclipse.jetty:jetty-webapp:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty:jetty-xml:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty:jetty-servlet:jar:9.2.15.v20160210:compile
[DEBUG]          org.eclipse.jetty:jetty-security:jar:9.2.15.v20160210:compile
[DEBUG]             org.eclipse.jetty:jetty-server:jar:9.2.15.v20160210:compile
[DEBUG]    org.eclipse.jetty.websocket:javax-websocket-server-impl:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty:jetty-annotations:jar:9.2.15.v20160210:compile
[DEBUG]          org.eclipse.jetty:jetty-plus:jar:9.2.15.v20160210:compile
[DEBUG]             org.eclipse.jetty:jetty-jndi:jar:9.2.15.v20160210:compile
[DEBUG]          javax.annotation:javax.annotation-api:jar:1.2:compile
[DEBUG]          org.ow2.asm:asm:jar:5.0.1:compile
[DEBUG]          org.ow2.asm:asm-commons:jar:5.0.1:compile
[DEBUG]             org.ow2.asm:asm-tree:jar:5.0.1:compile
[DEBUG]       org.eclipse.jetty.websocket:javax-websocket-client-impl:jar:9.2.15.v20160210:compile
[DEBUG]          org.eclipse.jetty.websocket:websocket-client:jar:9.2.15.v20160210:compile
[DEBUG]       org.eclipse.jetty.websocket:websocket-server:jar:9.2.15.v20160210:compile
[DEBUG]          org.eclipse.jetty.websocket:websocket-common:jar:9.2.15.v20160210:compile
[DEBUG]             org.eclipse.jetty.websocket:websocket-api:jar:9.2.15.v20160210:compile
[DEBUG]          org.eclipse.jetty.websocket:websocket-servlet:jar:9.2.15.v20160210:compile
[DEBUG]       javax.websocket:javax.websocket-api:jar:1.0:compile
[DEBUG]    org.flywaydb:flyway-core:jar:3.2.1:compile
[DEBUG]    org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.22.2:compile
[DEBUG]       org.glassfish.hk2.external:javax.inject:jar:2.4.0-b34:compile
[DEBUG]       org.glassfish.jersey.core:jersey-common:jar:2.22.2:compile
[DEBUG]          org.glassfish.jersey.bundles.repackaged:jersey-guava:jar:2.22.2:compile
[DEBUG]          org.glassfish.hk2:hk2-api:jar:2.4.0-b34:compile
[DEBUG]             org.glassfish.hk2:hk2-utils:jar:2.4.0-b34:compile
[DEBUG]             org.glassfish.hk2.external:aopalliance-repackaged:jar:2.4.0-b34:compile
[DEBUG]          org.glassfish.hk2:hk2-locator:jar:2.4.0-b34:compile
[DEBUG]          org.glassfish.hk2:osgi-resource-locator:jar:1.0.1:compile
[DEBUG]       org.glassfish.jersey.core:jersey-server:jar:2.22.2:compile
[DEBUG]          org.glassfish.jersey.core:jersey-client:jar:2.22.2:compile
[DEBUG]          org.glassfish.jersey.media:jersey-media-jaxb:jar:2.22.2:compile
[DEBUG]       javax.ws.rs:javax.ws.rs-api:jar:2.0.1:compile
[DEBUG]    org.hibernate:hibernate-entitymanager:jar:4.3.11.Final:compile
[DEBUG]       org.jboss.logging:jboss-logging:jar:3.3.0.Final:compile (version managed from 3.1.3.GA by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]       org.jboss.logging:jboss-logging-annotations:jar:1.2.0.Beta1:compile
[DEBUG]       org.hibernate:hibernate-core:jar:4.3.11.Final:compile
[DEBUG]          org.jboss:jandex:jar:1.1.0.Final:compile
[DEBUG]       org.hibernate.common:hibernate-commons-annotations:jar:4.0.5.Final:compile
[DEBUG]       org.hibernate.javax.persistence:hibernate-jpa-2.1-api:jar:1.0.0.Final:compile
[DEBUG]       org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:jar:1.0.0.Final:compile
[DEBUG]       org.javassist:javassist:jar:3.18.1-GA:compile
[DEBUG]    org.hibernate:hibernate-validator:jar:5.2.4.Final:compile
[DEBUG]       javax.validation:validation-api:jar:1.1.0.Final:compile
[DEBUG]       com.fasterxml:classmate:jar:1.1.0:compile
[DEBUG]    org.hornetq:hornetq-jms-server:jar:2.4.7.Final:compile
[DEBUG]       org.hornetq:hornetq-core-client:jar:2.4.7.Final:compile
[DEBUG]          org.hornetq:hornetq-commons:jar:2.4.7.Final:compile
[DEBUG]          org.hornetq:hornetq-journal:jar:2.4.7.Final:compile
[DEBUG]             org.hornetq:hornetq-native:jar:2.4.7.Final:compile
[DEBUG]       org.hornetq:hornetq-jms-client:jar:2.4.7.Final:compile
[DEBUG]       org.hornetq:hornetq-server:jar:2.4.7.Final:compile
[DEBUG]       org.jboss.spec.javax.jms:jboss-jms-api_2.0_spec:jar:1.0.0.Final:compile
[DEBUG]       org.jboss:jboss-transaction-spi:jar:7.0.0.Final:compile
[DEBUG]          org.jboss.spec.javax.resource:jboss-connector-api_1.5_spec:jar:1.0.0.Final:compile
[DEBUG]       org.jboss.naming:jnpserver:jar:5.0.3.GA:compile
[DEBUG]          org.jboss:jboss-common-core:jar:2.2.10.GA:compile
[DEBUG]    org.infinispan:infinispan-jcache:jar:8.1.2.Final:compile
[DEBUG]       org.infinispan:infinispan-core:jar:8.1.2.Final:compile
[DEBUG]          org.infinispan:infinispan-commons:jar:8.1.2.Final:compile
[DEBUG]          org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.1.Final:compile
[DEBUG]       org.infinispan:infinispan-jcache-commons:jar:8.1.2.Final:compile
[DEBUG]       org.infinispan:infinispan-cdi-embedded:jar:8.1.2.Final:compile
[DEBUG]          org.infinispan:infinispan-cdi-common:jar:8.1.2.Final:compile
[DEBUG]    org.infinispan:infinispan-spring4-embedded:jar:8.1.2.Final:compile
[DEBUG]       org.infinispan:infinispan-spring4-common:jar:8.1.2.Final:compile
[DEBUG]       org.jgroups:jgroups:jar:3.6.4.Final:compile
[DEBUG]       org.jboss.marshalling:jboss-marshalling-osgi:jar:1.4.10.Final:compile
[DEBUG]    org.json:json:jar:20140107:compile
[DEBUG]    org.jolokia:jolokia-core:jar:1.3.3:compile
[DEBUG]    org.liquibase:liquibase-core:jar:3.4.2:compile
[DEBUG]    org.slf4j:slf4j-api:jar:1.7.20:compile
[DEBUG]    org.slf4j:jul-to-slf4j:jar:1.7.20:compile
[DEBUG]    org.springframework:spring-context-support:jar:4.3.0.BUILD-SNAPSHOT:compile
[DEBUG]       org.springframework:spring-beans:jar:4.3.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework:spring-jms:jar:4.3.0.BUILD-SNAPSHOT:compile
[DEBUG]       org.springframework:spring-aop:jar:4.3.0.BUILD-SNAPSHOT:compile
[DEBUG]       org.springframework:spring-tx:jar:4.3.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework:spring-messaging:jar:4.3.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework:spring-orm:jar:4.3.0.BUILD-SNAPSHOT:compile
[DEBUG]       org.springframework:spring-jdbc:jar:4.3.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework:spring-test:jar:4.3.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework:spring-web:jar:4.3.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework:spring-webmvc:jar:4.3.0.BUILD-SNAPSHOT:compile
[DEBUG]       org.springframework:spring-expression:jar:4.3.0.BUILD-SNAPSHOT:compile
[DEBUG]    org.springframework.amqp:spring-rabbit:jar:1.6.0.M2:compile
[DEBUG]       org.springframework.amqp:spring-amqp:jar:1.6.0.M2:compile
[DEBUG]       com.rabbitmq:amqp-client:jar:3.6.0:compile
[DEBUG]       org.springframework.retry:spring-retry:jar:1.1.2.RELEASE:compile
[DEBUG]       com.rabbitmq:http-client:jar:1.0.0.RELEASE:compile
[DEBUG]    org.springframework.batch:spring-batch-core:jar:3.0.6.RELEASE:compile
[DEBUG]       com.ibm.jbatch:com.ibm.jbatch-tck-spi:jar:1.0:compile
[DEBUG]          javax.batch:javax.batch-api:jar:1.0:compile
[DEBUG]       com.thoughtworks.xstream:xstream:jar:1.4.7:compile
[DEBUG]          xmlpull:xmlpull:jar:1.1.3.1:compile
[DEBUG]          xpp3:xpp3_min:jar:1.1.4c:compile
[DEBUG]       org.codehaus.jettison:jettison:jar:1.2:compile
[DEBUG]       org.springframework.batch:spring-batch-infrastructure:jar:3.0.6.RELEASE:compile
[DEBUG]    org.springframework.cloud:spring-cloud-core:jar:1.2.1.RELEASE:compile
[DEBUG]    org.springframework.cloud:spring-cloud-spring-service-connector:jar:1.2.1.RELEASE:compile
[DEBUG]    org.springframework.integration:spring-integration-core:jar:4.3.0.M1:compile
[DEBUG]    org.springframework.integration:spring-integration-jmx:jar:4.3.0.M1:compile
[DEBUG]    org.springframework.security:spring-security-config:jar:4.0.3.RELEASE:compile
[DEBUG]       aopalliance:aopalliance:jar:1.0:compile
[DEBUG]       org.springframework.security:spring-security-core:jar:4.0.3.RELEASE:compile
[DEBUG]    org.springframework.session:spring-session:jar:1.1.0.RELEASE:compile
[DEBUG]    org.springframework.social:spring-social-facebook:jar:2.0.3.RELEASE:compile
[DEBUG]       org.springframework.social:spring-social-core:jar:1.1.4.RELEASE:compile
[DEBUG]    org.springframework.social:spring-social-linkedin:jar:1.0.2.RELEASE:compile
[DEBUG]    org.springframework.social:spring-social-twitter:jar:1.1.2.RELEASE:compile
[DEBUG]       org.springframework.security:spring-security-crypto:jar:4.0.3.RELEASE:compile (version managed from 3.2.8.RELEASE by org.springframework.security:spring-security-bom:4.0.3.RELEASE)
[DEBUG]    org.springframework.data:spring-data-cassandra:jar:1.4.0.RC1:compile
[DEBUG]       org.springframework.data:spring-cql:jar:1.4.0.RC1:compile
[DEBUG]          com.google.guava:guava:jar:18.0:compile (version managed from 19.0 by org.springframework.boot:spring-boot-parent:[unknown-version])
[DEBUG]       org.springframework.data:spring-data-commons:jar:1.12.0.RC1:compile
[DEBUG]       com.datastax.cassandra:cassandra-driver-dse:jar:2.1.9:compile (version managed from 2.1.7.1 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]          com.datastax.cassandra:cassandra-driver-core:jar:2.1.9:compile
[DEBUG]             com.codahale.metrics:metrics-core:jar:3.0.2:compile
[DEBUG]       org.slf4j:jcl-over-slf4j:jar:1.7.20:runtime (version managed from 1.7.19 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]    org.springframework.data:spring-data-couchbase:jar:2.1.0.RC1:compile
[DEBUG]       com.couchbase.client:java-client:jar:2.2.3:compile
[DEBUG]          com.couchbase.client:core-io:jar:1.2.3:compile
[DEBUG]             io.reactivex:rxjava:jar:1.0.15:compile
[DEBUG]    org.springframework.data:spring-data-elasticsearch:jar:2.0.0.RC1:compile
[DEBUG]       org.elasticsearch:elasticsearch:jar:1.7.5:compile (version managed from 2.2.0 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]          org.apache.lucene:lucene-core:jar:4.10.4:compile
[DEBUG]          org.apache.lucene:lucene-analyzers-common:jar:4.10.4:compile
[DEBUG]          org.apache.lucene:lucene-queries:jar:4.10.4:compile
[DEBUG]          org.apache.lucene:lucene-memory:jar:4.10.4:compile
[DEBUG]          org.apache.lucene:lucene-highlighter:jar:4.10.4:compile
[DEBUG]          org.apache.lucene:lucene-queryparser:jar:4.10.4:compile
[DEBUG]          org.apache.lucene:lucene-sandbox:jar:4.10.4:compile
[DEBUG]          org.apache.lucene:lucene-suggest:jar:4.10.4:compile
[DEBUG]          org.apache.lucene:lucene-misc:jar:4.10.4:compile
[DEBUG]          org.apache.lucene:lucene-join:jar:4.10.4:compile
[DEBUG]          org.apache.lucene:lucene-grouping:jar:4.10.4:compile
[DEBUG]          org.apache.lucene:lucene-spatial:jar:4.10.4:compile
[DEBUG]             com.spatial4j:spatial4j:jar:0.4.1:compile
[DEBUG]    org.springframework.data:spring-data-jpa:jar:1.10.0.RC1:compile
[DEBUG]       org.aspectj:aspectjrt:jar:1.8.8:compile (version managed from 1.8.9 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]    org.springframework.data:spring-data-mongodb:jar:1.9.0.RC1:compile
[DEBUG]       org.mongodb:mongo-java-driver:jar:2.14.1:compile (version managed from 2.14.0 by org.springframework.boot:spring-boot-dependencies:1.4.0.BUILD-SNAPSHOT)
[DEBUG]    org.springframework.data:spring-data-neo4j:jar:4.1.0.RC1:compile
[DEBUG]       org.neo4j:neo4j-ogm-core:jar:2.0.0-M04:compile
[DEBUG]          org.neo4j:neo4j-ogm-api:jar:2.0.0-M04:compile
[DEBUG]          org.neo4j:neo4j-ogm-compiler:jar:2.0.0-M04:compile
[DEBUG]       org.neo4j:neo4j-ogm-http-driver:jar:2.0.0-M04:compile
[DEBUG]          commons-io:commons-io:jar:2.4:compile
[DEBUG]    org.springframework.data:spring-data-redis:jar:1.7.0.RC1:compile
[DEBUG]       org.springframework.data:spring-data-keyvalue:jar:1.1.0.RC1:compile
[DEBUG]       org.springframework:spring-oxm:jar:4.3.0.BUILD-SNAPSHOT:compile (version managed from 4.2.5.RELEASE by org.springframework:spring-framework-bom:4.3.0.BUILD-SNAPSHOT)
[DEBUG]    org.springframework.data:spring-data-rest-core:jar:2.5.0.RC1:compile
[DEBUG]       org.springframework.plugin:spring-plugin-core:jar:1.2.0.RELEASE:compile
[DEBUG]       org.atteo:evo-inflector:jar:1.2.1:compile
[DEBUG]    org.springframework.data:spring-data-rest-webmvc:jar:2.5.0.RC1:compile
[DEBUG]    org.springframework.data:spring-data-solr:jar:2.0.0.RC1:compile
[DEBUG]       org.apache.commons:commons-lang3:jar:3.1:compile
[DEBUG]       org.apache.solr:solr-solrj:jar:5.5.0:compile
[DEBUG]          org.apache.zookeeper:zookeeper:jar:3.4.6:compile
[DEBUG]          org.codehaus.woodstox:woodstox-core-asl:jar:4.4.1:compile
[DEBUG]          org.noggit:noggit:jar:0.6:compile
[DEBUG]    org.springframework.hateoas:spring-hateoas:jar:0.19.0.RELEASE:compile
[DEBUG]    org.springframework.mobile:spring-mobile-device:jar:1.1.5.RELEASE:compile
[DEBUG]    org.springframework.security.oauth:spring-security-oauth2:jar:2.0.9.RELEASE:compile
[DEBUG]       org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile
[DEBUG]          org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile
[DEBUG]    org.springframework.security:spring-security-web:jar:4.0.3.RELEASE:compile
[DEBUG]    org.springframework.social:spring-social-config:jar:1.1.4.RELEASE:compile
[DEBUG]       org.springframework.social:spring-social-web:jar:1.1.4.RELEASE:compile
[DEBUG]    org.thymeleaf:thymeleaf-spring4:jar:2.1.4.RELEASE:compile
[DEBUG]    org.thymeleaf.extras:thymeleaf-extras-conditionalcomments:jar:2.1.1.RELEASE:compile
[DEBUG]       org.attoparser:attoparser:jar:1.3:compile
[DEBUG]    com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute:jar:1.3:compile
[DEBUG]    org.thymeleaf.extras:thymeleaf-extras-springsecurity4:jar:2.1.2.RELEASE:compile
[DEBUG]    org.yaml:snakeyaml:jar:1.17:compile
[DEBUG]    redis.clients:jedis:jar:2.8.1:compile
[DEBUG]    org.mockito:mockito-core:jar:1.10.19:test
[DEBUG]       org.objenesis:objenesis:jar:2.1:test
[DEBUG]    org.hamcrest:hamcrest-library:jar:1.3:test

Note no crashhub.cli under crashub.shell (about line 123)

wilkinsona commented 8 years ago

I just tried it on Windows and noticed this warning:

[WARNING] The POM for org.crashub:crash.shell:jar:1.3.2 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details

Shortly afterwards, the build fails. Enabling debug logging reveals this error:

[WARNING] The POM for org.crashub:crash.shell:jar:1.3.2 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for org.crashub:crash.shell:1.3.2
[ERROR] 'dependencies.dependency.systemPath' for com.sun:tools:jar must specify
an absolute path but is /home/tclement/plf-release-tools/tools/jdk1.7.0_67/jre/.
./lib/tools.jar @

That's a bug in the pom of crash.shell. We can work around the problem by adding a dependency on crash.cli to the pom of spring-boot-docs.

wilkinsona commented 8 years ago

@daveyahoo I think I've finally got to the bottom of this. If you pull the latest master code, the documentation should now build on Windows.

daveyahoo commented 8 years ago

@wilkinsona Thanks mate!

[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------

It worked like a charm. Thanks for your excellent support. And thanks for a great product!

GermanAriza commented 6 years ago

Thank you very much for your solutions, they helped me a lot to solve this problem

danish4uonly commented 5 years ago

The best solution I can say is: I think you are using latest Spring boot version, so you need to use latest version apache-maven-3.6.0, this is issues. use latest version of apache-maven-3.6.0 and you ready to go.

matheussk7 commented 5 years ago

Can you help me with this mistake? error.

[INFO] Scanning for projects... [INFO] [INFO] ------------------< localhost:tw0gerenciador-tarefas >------------------ [INFO] Building tw0gerenciador-tarefas 0.0.1-SNAPSHOT [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] >>> spring-boot-maven-plugin:2.1.6.RELEASE:run (default-cli) > test-compile @ tw0gerenciador-tarefas >>> [INFO] [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ tw0gerenciador-tarefas --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] Copying 3 resources [INFO] [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ tw0gerenciador-tarefas --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ tw0gerenciador-tarefas --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory C:\Users\jaredtheus\Documents\tw0gerenciador-tarefas\src\test\resources [INFO] [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ tw0gerenciador-tarefas --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] <<< spring-boot-maven-plugin:2.1.6.RELEASE:run (default-cli) < test-compile @ tw0gerenciador-tarefas <<< [INFO] [INFO] [INFO] --- spring-boot-maven-plugin:2.1.6.RELEASE:run (default-cli) @ tw0gerenciador-tarefas ---

. _ _ /\ / '_ () \ \ \ \ ( ( )\ | ' | '| | ' \/ ` | \ \ \ \ \/ _)| |)| | | | | || (| | ) ) ) ) ' |__| .|| ||| |\, | / / / / =========|_|==============|__/=//// :: Spring Boot :: (v2.1.6.RELEASE)

2019-07-10 12:08:49.807 INFO 10596 --- [ main] l.t.Tw0gerenciadorTarefasApplication : Starting Tw0gerenciadorTarefasApplication on LAPTOP-B5VQLLDB with PID 10596 (C:\Users\jaredtheus\Documents\tw0gerenciador-tarefas\target\classes started by jaredtheus in C:\Users\jaredtheus\Documents\tw0gerenciador-tarefas) 2019-07-10 12:08:49.813 INFO 10596 --- [ main] l.t.Tw0gerenciadorTarefasApplication : No active profile set, falling back to default profiles: default 2019-07-10 12:08:51.810 INFO 10596 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode. 2019-07-10 12:08:52.045 INFO 10596 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 208ms. Found 1 repository interfaces. 2019-07-10 12:08:53.027 INFO 10596 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$c53e5e36] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2019-07-10 12:08:53.817 INFO 10596 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) 2019-07-10 12:08:53.866 INFO 10596 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] 2019-07-10 12:08:53.867 INFO 10596 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.21] 2019-07-10 12:08:54.119 INFO 10596 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext 2019-07-10 12:08:54.119 INFO 10596 --- [ main] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 4186 ms 2019-07-10 12:08:54.547 INFO 10596 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... 2019-07-10 12:08:57.809 ERROR 10596 --- [ main] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Exception during pool initialization.

com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:835) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:455) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:240) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:199) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:136) ~[HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:369) ~[HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:198) ~[HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:467) [HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:541) [HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:115) [HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112) [HikariCP-3.2.0.jar:na] at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:157) [spring-jdbc-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:115) [spring-jdbc-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:78) [spring-jdbc-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.jdbc.support.JdbcUtils.extractDatabaseMetaData(JdbcUtils.java:319) [spring-jdbc-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.jdbc.support.JdbcUtils.extractDatabaseMetaData(JdbcUtils.java:356) [spring-jdbc-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.boot.autoconfigure.orm.jpa.DatabaseLookup.getDatabase(DatabaseLookup.java:73) [spring-boot-autoconfigure-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.autoconfigure.orm.jpa.JpaProperties.determineDatabase(JpaProperties.java:142) [spring-boot-autoconfigure-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration.jpaVendorAdapter(JpaBaseConfiguration.java:112) [spring-boot-autoconfigure-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration$$EnhancerBySpringCGLIB$$e41520a5.CGLIB$jpaVendorAdapter$5() [spring-boot-autoconfigure-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration$$EnhancerBySpringCGLIB$$e41520a5$$FastClassBySpringCGLIB$$8f99a1b4.invoke() [spring-boot-autoconfigure-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:244) [spring-core-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:363) [spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration$$EnhancerBySpringCGLIB$$e41520a5.jpaVendorAdapter() [spring-boot-autoconfigure-2.1.6.RELEASE.jar:2.1.6.RELEASE] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_181] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_181] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_181] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_181] at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:622) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:456) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1321) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1160) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:277) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1251) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1171) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:857) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:760) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:509) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1321) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1160) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:277) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1251) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1171) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:857) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:760) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:509) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1321) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1160) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1105) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:867) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:742) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:389) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:311) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1213) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1202) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at localhost.tw0gerenciadortarefas.Tw0gerenciadorTarefasApplication.main(Tw0gerenciadorTarefasApplication.java:10) ~[classes/:na] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_181] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_181] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_181] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_181] at org.springframework.boot.maven.AbstractRunMojo$LaunchRunner.run(AbstractRunMojo.java:542) ~[na:na] at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_181] Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:1.8.0_181] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[na:1.8.0_181] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[na:1.8.0_181] at java.lang.reflect.Constructor.newInstance(Constructor.java:423) ~[na:1.8.0_181] at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:91) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.NativeSession.connect(NativeSession.java:152) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:955) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:825) ~[mysql-connector-java-8.0.16.jar:8.0.16] ... 82 common frames omitted Caused by: java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) ~[na:1.8.0_181] at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85) ~[na:1.8.0_181] at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350) ~[na:1.8.0_181] at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206) ~[na:1.8.0_181] at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188) ~[na:1.8.0_181] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172) ~[na:1.8.0_181] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[na:1.8.0_181] at java.net.Socket.connect(Socket.java:589) ~[na:1.8.0_181] at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:155) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:65) ~[mysql-connector-java-8.0.16.jar:8.0.16] ... 85 common frames omitted

2019-07-10 12:08:57.841 WARN 10596 --- [ main] o.s.b.a.orm.jpa.DatabaseLookup : Unable to determine jdbc url from datasource

org.springframework.jdbc.support.MetaDataAccessException: Could not get Connection for extracting meta-data; nested exception is org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.springframework.jdbc.support.JdbcUtils.extractDatabaseMetaData(JdbcUtils.java:328) ~[spring-jdbc-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.jdbc.support.JdbcUtils.extractDatabaseMetaData(JdbcUtils.java:356) ~[spring-jdbc-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.boot.autoconfigure.orm.jpa.DatabaseLookup.getDatabase(DatabaseLookup.java:73) ~[spring-boot-autoconfigure-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.autoconfigure.orm.jpa.JpaProperties.determineDatabase(JpaProperties.java:142) [spring-boot-autoconfigure-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration.jpaVendorAdapter(JpaBaseConfiguration.java:112) [spring-boot-autoconfigure-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration$$EnhancerBySpringCGLIB$$e41520a5.CGLIB$jpaVendorAdapter$5() [spring-boot-autoconfigure-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration$$EnhancerBySpringCGLIB$$e41520a5$$FastClassBySpringCGLIB$$8f99a1b4.invoke() [spring-boot-autoconfigure-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:244) [spring-core-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:363) [spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration$$EnhancerBySpringCGLIB$$e41520a5.jpaVendorAdapter() [spring-boot-autoconfigure-2.1.6.RELEASE.jar:2.1.6.RELEASE] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_181] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_181] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_181] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_181] at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:622) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:456) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1321) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1160) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:277) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1251) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1171) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:857) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:760) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:509) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1321) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1160) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:277) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1251) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1171) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:857) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:760) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:509) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1321) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1160) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1105) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:867) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:742) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:389) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:311) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1213) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1202) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at localhost.tw0gerenciadortarefas.Tw0gerenciadorTarefasApplication.main(Tw0gerenciadorTarefasApplication.java:10) ~[classes/:na] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_181] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_181] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_181] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_181] at org.springframework.boot.maven.AbstractRunMojo$LaunchRunner.run(AbstractRunMojo.java:542) ~[na:na] at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_181] Caused by: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) ~[spring-jdbc-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.jdbc.support.JdbcUtils.extractDatabaseMetaData(JdbcUtils.java:319) ~[spring-jdbc-5.1.8.RELEASE.jar:5.1.8.RELEASE] ... 68 common frames omitted Caused by: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:835) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:455) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:240) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:199) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:136) ~[HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:369) ~[HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:198) ~[HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:467) ~[HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:541) ~[HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:115) ~[HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112) ~[HikariCP-3.2.0.jar:na] at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:157) ~[spring-jdbc-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:115) ~[spring-jdbc-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:78) ~[spring-jdbc-5.1.8.RELEASE.jar:5.1.8.RELEASE] ... 69 common frames omitted Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:1.8.0_181] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[na:1.8.0_181] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[na:1.8.0_181] at java.lang.reflect.Constructor.newInstance(Constructor.java:423) ~[na:1.8.0_181] at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:91) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.NativeSession.connect(NativeSession.java:152) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:955) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:825) ~[mysql-connector-java-8.0.16.jar:8.0.16] ... 82 common frames omitted Caused by: java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) ~[na:1.8.0_181] at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85) ~[na:1.8.0_181] at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350) ~[na:1.8.0_181] at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206) ~[na:1.8.0_181] at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188) ~[na:1.8.0_181] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172) ~[na:1.8.0_181] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[na:1.8.0_181] at java.net.Socket.connect(Socket.java:589) ~[na:1.8.0_181] at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:155) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:65) ~[mysql-connector-java-8.0.16.jar:8.0.16] ... 85 common frames omitted

2019-07-10 12:08:57.938 INFO 10596 --- [ main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [ name: default ...] 2019-07-10 12:08:58.112 INFO 10596 --- [ main] org.hibernate.Version : HHH000412: Hibernate Core {5.3.10.Final} 2019-07-10 12:08:58.114 INFO 10596 --- [ main] org.hibernate.cfg.Environment : HHH000206: hibernate.properties not found 2019-07-10 12:08:58.477 INFO 10596 --- [ main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.0.4.Final} 2019-07-10 12:08:58.777 INFO 10596 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... 2019-07-10 12:09:01.788 ERROR 10596 --- [ main] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Exception during pool initialization.

com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:835) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:455) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:240) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:199) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:136) ~[HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:369) ~[HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:198) ~[HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:467) [HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:541) [HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:115) [HikariCP-3.2.0.jar:na] at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112) [HikariCP-3.2.0.jar:na] at org.hibernate.engine.jdbc.connections.internal.DatasourceConnectionProviderImpl.getConnection(DatasourceConnectionProviderImpl.java:122) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess.obtainConnection(JdbcEnvironmentInitiator.java:180) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:68) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:35) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.boot.registry.internal.StandardServiceRegistryImpl.initiateService(StandardServiceRegistryImpl.java:94) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.service.internal.AbstractServiceRegistryImpl.createService(AbstractServiceRegistryImpl.java:263) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:237) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory.injectServices(DefaultIdentifierGeneratorFactory.java:152) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.service.internal.AbstractServiceRegistryImpl.injectDependencies(AbstractServiceRegistryImpl.java:286) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:243) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.boot.internal.InFlightMetadataCollectorImpl.(InFlightMetadataCollectorImpl.java:179) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.boot.model.process.spi.MetadataBuildingProcess.complete(MetadataBuildingProcess.java:119) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.metadata(EntityManagerFactoryBuilderImpl.java:904) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:935) [hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:57) [spring-orm-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:365) [spring-orm-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:390) [spring-orm-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:377) [spring-orm-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:341) [spring-orm-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1837) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1774) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:593) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1105) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:867) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:742) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:389) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:311) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1213) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1202) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at localhost.tw0gerenciadortarefas.Tw0gerenciadorTarefasApplication.main(Tw0gerenciadorTarefasApplication.java:10) ~[classes/:na] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_181] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_181] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_181] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_181] at org.springframework.boot.maven.AbstractRunMojo$LaunchRunner.run(AbstractRunMojo.java:542) ~[na:na] at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_181] Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:1.8.0_181] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[na:1.8.0_181] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[na:1.8.0_181] at java.lang.reflect.Constructor.newInstance(Constructor.java:423) ~[na:1.8.0_181] at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:91) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.NativeSession.connect(NativeSession.java:152) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:955) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:825) ~[mysql-connector-java-8.0.16.jar:8.0.16] ... 55 common frames omitted Caused by: java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) ~[na:1.8.0_181] at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85) ~[na:1.8.0_181] at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350) ~[na:1.8.0_181] at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206) ~[na:1.8.0_181] at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188) ~[na:1.8.0_181] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172) ~[na:1.8.0_181] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[na:1.8.0_181] at java.net.Socket.connect(Socket.java:589) ~[na:1.8.0_181] at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:155) ~[mysql-connector-java-8.0.16.jar:8.0.16] at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:65) ~[mysql-connector-java-8.0.16.jar:8.0.16] ... 58 common frames omitted

2019-07-10 12:09:01.796 WARN 10596 --- [ main] o.h.e.j.e.i.JdbcEnvironmentInitiator : HHH000342: Could not obtain connection to query metadata : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. 2019-07-10 12:09:01.804 WARN 10596 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment] 2019-07-10 12:09:01.810 INFO 10596 --- [ main] o.apache.catalina.core.StandardService : Stopping service [Tomcat] 2019-07-10 12:09:01.834 INFO 10596 --- [ main] ConditionEvaluationReportLoggingListener :

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2019-07-10 12:09:01.839 ERROR 10596 --- [ main] o.s.boot.SpringApplication : Application run failed

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1778) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:593) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1105) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:867) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:742) [spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:389) [spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:311) [spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1213) [spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1202) [spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE] at localhost.tw0gerenciadortarefas.Tw0gerenciadorTarefasApplication.main(Tw0gerenciadorTarefasApplication.java:10) [classes/:na] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_181] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_181] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_181] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_181] at org.springframework.boot.maven.AbstractRunMojo$LaunchRunner.run(AbstractRunMojo.java:542) [spring-boot-maven-plugin-2.1.6.RELEASE.jar:2.1.6.RELEASE] at java.lang.Thread.run(Thread.java:748) [na:1.8.0_181] Caused by: org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment] at org.hibernate.service.internal.AbstractServiceRegistryImpl.createService(AbstractServiceRegistryImpl.java:275) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:237) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory.injectServices(DefaultIdentifierGeneratorFactory.java:152) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.service.internal.AbstractServiceRegistryImpl.injectDependencies(AbstractServiceRegistryImpl.java:286) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:243) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.boot.internal.InFlightMetadataCollectorImpl.(InFlightMetadataCollectorImpl.java:179) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.boot.model.process.spi.MetadataBuildingProcess.complete(MetadataBuildingProcess.java:119) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.metadata(EntityManagerFactoryBuilderImpl.java:904) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:935) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:57) ~[spring-orm-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:365) ~[spring-orm-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:390) ~[spring-orm-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:377) ~[spring-orm-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:341) ~[spring-orm-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1837) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1774) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE] ... 22 common frames omitted Caused by: org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set at org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl.determineDialect(DialectFactoryImpl.java:100) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl.buildDialect(DialectFactoryImpl.java:54) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:137) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:35) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.boot.registry.internal.StandardServiceRegistryImpl.initiateService(StandardServiceRegistryImpl.java:94) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] at org.hibernate.service.internal.AbstractServiceRegistryImpl.createService(AbstractServiceRegistryImpl.java:263) ~[hibernate-core-5.3.10.Final.jar:5.3.10.Final] ... 39 common frames omitted

[WARNING] java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.springframework.boot.maven.AbstractRunMojo$LaunchRunner.run(AbstractRunMojo.java:542) at java.lang.Thread.run(Thread.java:748) Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1778) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:593) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1105) at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:867) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549) at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140) at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:742) at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:389) at org.springframework.boot.SpringApplication.run(SpringApplication.java:311) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1213) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1202) at localhost.tw0gerenciadortarefas.Tw0gerenciadorTarefasApplication.main(Tw0gerenciadorTarefasApplication.java:10) ... 6 more Caused by: org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment] at org.hibernate.service.internal.AbstractServiceRegistryImpl.createService(AbstractServiceRegistryImpl.java:275) at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:237) at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214) at org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory.injectServices(DefaultIdentifierGeneratorFactory.java:152) at org.hibernate.service.internal.AbstractServiceRegistryImpl.injectDependencies(AbstractServiceRegistryImpl.java:286) at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:243) at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214) at org.hibernate.boot.internal.InFlightMetadataCollectorImpl.(InFlightMetadataCollectorImpl.java:179) at org.hibernate.boot.model.process.spi.MetadataBuildingProcess.complete(MetadataBuildingProcess.java:119) at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.metadata(EntityManagerFactoryBuilderImpl.java:904) at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:935) at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:57) at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:365) at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:390) at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:377) at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:341) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1837) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1774) ... 22 more Caused by: org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set at org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl.determineDialect(DialectFactoryImpl.java:100) at org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl.buildDialect(DialectFactoryImpl.java:54) at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:137) at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:35) at org.hibernate.boot.registry.internal.StandardServiceRegistryImpl.initiateService(StandardServiceRegistryImpl.java:94) at org.hibernate.service.internal.AbstractServiceRegistryImpl.createService(AbstractServiceRegistryImpl.java:263) ... 39 more [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 19.907 s [INFO] Finished at: 2019-07-10T12:09:01-03:00 [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.1.6.RELEASE:run (default-cli) on project tw0gerenciador-tarefas: An exception occurred while running. null: InvocationTargetException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

snicoll commented 5 years ago

@matheussk7 please ask questions on StackOverflow.