Jenkins is an automation tool designed for Continuous Integration (CI) and Continuous Deployment (CD). It allows automatic execution of build, testing, and deployment processes whenever code changes are made in the repository.
To configure the project locally, follow these steps:
-
Run Jenkins locally
- Install and start Jenkins on your machine.
- Ensure all required plugins are installed.
-
Configure the settings file
- Copy
.properties.TEMPLATE. - Rename it to
.properties(removeTEMPLATE). - Fill in the necessary values with your local configuration.
- Copy
After completing these steps, your project should be ready to use! 🚀
To run automated tests locally, use the following commands:
-
Run all tests:
mvn test
-
Run specific tests:
mvn test -Dtest=TestName