-
Notifications
You must be signed in to change notification settings - Fork 455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A problem was found with the configuration of task ':spotlessJavaCheck'. /build/spotless/spotlessJava' specified for property 'spotlessOutDirectory' does not exist. #814
Comments
Because of this Pipeline stage is failing for code format check... can anyone help me resolving this issue. |
Dupe of #741, fixed in |
Hi @nedtwigg, Even after updating spotless version to 5.9.0 we are getting following issue:
There is no directory etc. I am confused is it related to soptless or what ? |
That's a very strange error trace. Maybe try |
when i run command >> ./gradlew --stacktrace spotlessJava getting following op: |
Huzzah, it's fixed! ;-) If you would like further help, it's easier to read your debuginfo if you read this. As of now, it looks to me like |
If you are submitting a bug, please include the following:
Task :spotlessJavaCheck FAILED
What went wrong:
A problem was found with the configuration of task ':spotlessJavaCheck'.
Directory '......./build/spotless/spotlessJava' specified for property 'spotlessOutDirectory' does not exist.
gradle-5.6
spotless_version = '5.8.2'
spotless {
format 'misc', {
target '/*.gradle', '/.md', '/.gitignore'
trimTrailingWhitespace()
indentWithSpaces()
endWithNewline()
}
java {
target project.fileTree(project.rootDir) {
include '/.java'
exclude 'build/generated/**/.'
}
googleJavaFormat().aosp()
}
}
gradlew spotless[Apply/Check] --stacktrace
If you're just submitting a feature request or question, no need for the above.
The text was updated successfully, but these errors were encountered: