15 lines
200 B
Kotlin
15 lines
200 B
Kotlin
plugins {
|
|
java
|
|
}
|
|
|
|
group = "com.example.demo"
|
|
version = "0.1.0"
|
|
|
|
tasks.register("bootRun") {
|
|
description = "Run the application"
|
|
}
|
|
|
|
tasks.register("test") {
|
|
description = "Run the tests"
|
|
}
|