Skip to content

Latest commit

 

History

History
64 lines (47 loc) · 2.54 KB

File metadata and controls

64 lines (47 loc) · 2.54 KB

JenkinsQA_Java_2025_fall

Project for Testing the CI/CD Tool Jenkins

Jenkins logo

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.

Content:

Tech Stack


️ Settings

To configure the project locally, follow these steps:

  1. Run Jenkins locally

    • Install and start Jenkins on your machine.
    • Ensure all required plugins are installed.
  2. Configure the settings file

    • Copy .properties.TEMPLATE.
    • Rename it to .properties (remove TEMPLATE).
    • Fill in the necessary values with your local configuration.

After completing these steps, your project should be ready to use! 🚀


Running Tests Locally

To run automated tests locally, use the following commands:

  1. Run all tests:

    • mvn test
  2. Run specific tests:

    • mvn test -Dtest=TestName