# Readme.md
This project is a Spring Boot application built with Maven. It is written in Java and follows the standard structure for a Spring Boot project.
## Prerequisites
- Java Development Kit (JDK) 11 or higher
- Maven 3.6.0 or higher
## Building the Project
To build the project, navigate to the project directory and run the following command:
```sh
mvn clean installThis will compile the project, run the tests, and package the application into a JAR file.
To run the application, use the following command:
mvn spring-boot:runAlternatively, you can run the JAR file directly:
java -jar target/your-application-name.jarThe application can be configured using the application.properties or application.yml file located in the src/main/resources directory.
To run the tests, use the following command:
mvn testThis project is licensed under the MIT License. See the LICENSE file for details.