Fix typo in userguide java plugin config image#6011
Conversation
The dot file had a typo - a missing `t` in `testImplementation`, that created an extra node on the diagram, and caused confusion. Issue: gradle#5681 Signed-off-by: Mészáros Máté Róbert <[email protected]>
|
I manually merged this as the png wasn't regenerated. Could be nice to get those generated as part of the user guide generation. @eriwen what do you think? I don't think it's really important but avoid debugging why the image wasn't updated. |
|
@lacasseio good catch - did not notice, that the generated images are part of the repository (did a sparse checkout). I think it can be fixed with: # in gradle repo
pushd subprojects/docs/src/docs/userguide/img/
dot -Tpng javaPluginConfigurations.dot > javaPluginConfigurations.png
popdI see You have merged this - shall I create another PR for the binary image? |
|
@mrmeszaros Don't worry about it. I generated the image file. It should all be good with the latest master and the next nightly. |
|
@lacasseio I'm not opposed to generating these images in the docs pipeline. Would you want to submit a PR for that? Or at least file an issue in the appropriate place. |
Context
The dot file had a typo - a missing
tintestImplementation, that created an extra node on the diagram, and caused confusion.This has been documented in the issue #5681.
Contributor Checklist
Provide integration tests (under<subproject>/src/integTest) to verify changes from a user perspectiveProvide unit tests (under<subproject>/src/test) to verify logic./gradlew <changed-subproject>:checkGradle Core Team Checklist