Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 562 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 562 Bytes

kotlin-spring-ex

Sample project based on Kotlin and Spring boot.

Prerequisites

  • JDK 11 or later
  • GIT

Running the application locally

You can run the application from the command line using:

./gradlew bootRun

Or you can build a single executable JAR file that contains all the necessary dependencies, classes, and resources with:

./gradlew clean build

Then you can run the JAR file with:

java -jar build/libs/kotlin-spring-ex-0.0.1.jar

Run tests

./gradlew test