Contributing Guide
Thank you for considering contributing to our Java Projects! This document provides guidelines and instructions for contributors.
Getting Started
- Fork the repository
- Clone your fork:
bash
git clone https://github.com/YOUR-USERNAME/javaprojects.git
Development Setup
Install prerequisites:
- Java Development Kit (JDK) 11 or later
- Git
- Your favorite IDE
Build the project:
bash
./gradlew build
Coding Standards
Java Code Style
- Use 4 spaces for indentation
- Follow Java naming conventions
- Add comments for complex logic
- Write unit tests for new features
Pull Request Process
- Create a new branch:
bash
git checkout -b feature/your-feature-name
- Make your changes
- Write tests
- Update documentation
- Submit a pull request
Before Submitting
- Ensure all tests pass
- Update relevant documentation
- Follow the code style guidelines
Need Help?
Feel free to:
- Open an issue
- Ask questions in discussions
- Contact the maintainers