This project is governed by the Code of Conduct. By participating you are expected to uphold this code. Please report unacceptable behavior to issue.
Use Intellij Community (also Ultimate is possible).
Import code style schema from naver-intellij-formatter. You can see how to import schemas in the Intellij guide.
Feel free to make an any issue.
We doesn't require a lot.
- Make sure that all check passes (
./gradlew checkshould pass) - Make sure to write test for all code changes.
You can check build guide in build from source.
Compares two Spring Batch upstream version tags and shows the diff. Useful for understanding what changed between versions when planning migration work.
# Show diffstat summary between two versions
scripts/spring-batch-diff.sh 5.2.0 6.0.0 --stat
# Filter to specific module
scripts/spring-batch-diff.sh 5.2.0 6.0.0 --stat -p 'spring-batch-core/src/main/java/**'
# Full diff output to file
scripts/spring-batch-diff.sh 5.2.0 6.0.0 -o /tmp/batch-diff.patch
# List available tags
scripts/spring-batch-diff.sh --list-tagsRun scripts/spring-batch-diff.sh --help for all options.