Skip to content

Instantly share code, notes, and snippets.

@RichardHightower
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RichardHightower/6853259ab2d926619f60 to your computer and use it in GitHub Desktop.
Save RichardHightower/6853259ab2d926619f60 to your computer and use it in GitHub Desktop.
./gradlew idea
FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring root project 'vert.x'.
> Could not resolve all dependencies for configuration ':classpath'.
> Could not download artifact 'junit:junit:4.8.2@jar'
> Artifact 'junit:junit:4.8.2@jar' not found.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 2.747 secs
....
HD:vert.x Richard$ find . -name "*.properties" | xargs grep junit
./gradle.properties:junitVersion=4.10
HD:vert.x Richard$ find . -name "*.gradle" | xargs grep junit
./build.gradle: testCompile "junit:junit:$junitVersion"
./build.gradle: exclude group: "junit"
./build.gradle: exclude group: "junit"
Don't get why I am getting a 4.8 junit missing when it seems vertx is using 4.10.
Can find another reference to 4.8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment