kennknowles commented on pull request #13075:
URL: https://github.com/apache/beam/pull/13075#issuecomment-720711343


   It does seem that if a module had any of these deps but forgot the 
`enforcedPlatform` line then it would go back to getting the arbitrary latest 
version. I understand fixing that is in a follow-up.
   
   Here's what I did to view the dep changes:
   
   ```
   # gcp is GNU cp here
   mkdir ~/tmp/deps-before
   git checkout github/master
   ./gradlew dependencyReport
   find . -name dependencies.txt -exec gcp --parents \{\} ~/tmp/deps-before/ \;
   
   mkdir ~/tmp/deps-after
   git checkout github/pr/13075
   ./gradlew dependencyReport
   find . -name dependencies.txt -exec gcp --parents \{\} ~/tmp/deps-after/ \;
   
   diff --brief --recursive ~/tmp/deps-before ~/tmp/deps-after
   
   diff --unified=0 --recursive ~/tmp/deps-before ~/tmp/deps-after
   ```
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to