Contributing to HestiaStore
Thank you for your interest in contributing to HestiaStore! We're excited to welcome your ideas, improvements, and bug fixes. Please follow the guidelines below to ensure a smooth and productive collaboration.
๐งญ Before You Start
Please make sure there is an existing issue or create a new one that describes your intended change or feature. This helps us track and discuss proposals before any code is written.
๐งโ๐ป Code Style
We follow a consistent Java coding style defined by the Eclipse formatter settings in ./eclipse-formatter.xml. Please configure your IDE to use this formatter to keep the codebase consistent.
๐งช Code Quality Checks
Before submitting your code, please verify the following:
- โ
Run Site Checks
Executemvn clean siteto generate the project site and perform static analysis. This will highlight issues reported by: - PMD
- Checkstyle
-
SpotBugs (formerly FindBugs)
Please ensure your changes do not introduce new warnings or violations. -
โ Test Coverage
All new code should be covered by unit tests. We use JUnit. Run tests and verify that your code is being exercised by checking the line coverage in the site reports. -
โ Javadoc Comments
Public methods, classes, and significant internal logic should be documented using Javadoc. Clear documentation helps others understand and maintain the project.
๐ Commit and Submit
- Make your changes in a separate branch.
- Push your branch to your fork or the main repo (if you have access).
- Open a Pull Request with a clear title and description.
- Link to the related issue or ticket.
โณ Review Process
Once submitted, your PR will be reviewed by a maintainer. We may request changes or ask clarifying questions. Please be patient โ reviews are important to keep the project healthy.
๐ Thanks
We appreciate your contribution, whether it's code, documentation, or ideas. Your support makes HestiaStore better!
๐ฌ For questions, feel free to open a GitHub Issue.