Last active
August 29, 2015 14:04
-
-
Save RichardHightower/6853259ab2d926619f60 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./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