Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.06 KB

README.md

File metadata and controls

39 lines (26 loc) · 1.06 KB

Payment Scheduler

Description

Development project for the implementation of the Payment Scheduler service.

How to Run Application

Start the application using these commands below

Tip

Run these commands inside the root folder of this project; i.e inside the payment-scheduler folder.

  • Using maven

    mvn spring-boot:run
    
  • From jar file Create a jar file using mvn clean install command and then execute:

    java -jar target/payment-scheduler.jar
    

Note

By default spring boot application starts on port number 8080. If port 8080 is occupied in your system then you can change the port number by uncommenting and updating the server.port property inside the application.yaml file that is available inside the src > main > resources folder.

How to Run Unit Test Cases

Run the test cases using this command below

Tip

This command needs to run inside the root folder of this project i.e inside the payment-scheduler folder

  • To run all the test cases
    mvn test