tiennguyen-onehouse commented on code in PR #13861: URL: https://github.com/apache/hudi/pull/13861#discussion_r2343007444
########## README-INTERNAL.md: ########## @@ -0,0 +1,29 @@ +# Hudi Internal Development Guide + +This document contains internal development notes and commands for working with the Hudi codebase. + +Before building, run the authentication command: + +```bash +code_auth +``` +## Code Quality Checks + +### Checkstyle + +Run checkstyle: + +```bash +# Check entire project +mvn checkstyle:check + +# Check specific module +mvn checkstyle:check -pl hudi-sync/hudi-datahub-sync +``` + +## Build Commands + +### Clean Build +```bash +mvn -T 14C clean package -DskipTests -Dscala-2.12 -Dspark3.5 -Dflink1.20 Review Comment: no sorry I was suppose to clean that up. Let me remove it. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
