-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dependancy Issue #17
Comments
Thanks for the kind words! It looks like there are some dependency version mismatches causing issues with your setup. The project is using Spring Boot 2.7.16, but Spring Web version 6.1.11, which is part of Spring Framework 6.x series, might not be compatible with the 2.x Spring Boot version. To resolve this, you could try aligning both Spring Boot and Spring Web versions. Either downgrade spring-web to a version compatible with 2.7.16 or upgrade the Spring Boot version to 3.x, which supports Spring Framework 6.x. Let me know if you need further assistance! |
ContributingThank you for considering contributing to our project! Follow these steps to set up the project and resolve common issues before making contributions: 1. Resolve Spring Dependency ConflictsThe project uses Spring Boot 2.7.16, which is compatible with Spring Framework 5.x. If you encounter dependency conflicts like seeing spring-web 6.1.11 (from Spring Framework 6.x), here’s how to resolve it:
2. Fork the Repository
git clone https://github.com/your-username/repo-name.git 3. Set Up the Project Locally
mvn clean install 4. Create a Branch for Your Changes
git checkout -b fix-version-conflict 5. Make the Necessary Adjustments
mvn test 6. Submit a Pull Request
git push origin fix-version-conflict If you need help at any step or have questions, feel free to reach out! We're happy to assist. |
Hi @hoangtien2k3 @hoangchungk53qx1
The repo is really great and good and i would like to contribute as well,But i couldnt do an initial setUp
when i run the mvn clean install i see a quite a few dependancy conflicts especially the spring-web and boot version
Here it uses 2.7.16
org.springframework.boot
spring-boot-starter-parent
2.7.16
but the web version
org.springframework spring-web 6.1.11The text was updated successfully, but these errors were encountered: