Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 1.51 KB

File metadata and controls

49 lines (29 loc) · 1.51 KB

Contributing

Code of Conduct

This project is governed by the Code of Conduct. By participating you are expected to uphold this code. Please report unacceptable behavior to issue.

IDE

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.

How to contribute

Issue

Feel free to make an any issue.

Pull request

We doesn't require a lot.

  1. Make sure that all check passes (./gradlew check should pass)
  2. Make sure to write test for all code changes.

You can check build guide in build from source.

Scripts

spring-batch-diff.sh

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-tags

Run scripts/spring-batch-diff.sh --help for all options.