Skip to content

Commit

Permalink
mytask
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacplmann committed Apr 22, 2024
1 parent 7400826 commit 727b0f1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,17 @@ dependencies {
implementation(project(":utilities"))
}

tasks.register("mytask"){
group = "Custom"
description = "A custom task"
}

tasks.named("mytask"){
doFirst {
println("This is my task!")
}
}

application {
// Define the main class for the application.
mainClass = "org.example.app.App"
Expand Down

0 comments on commit 727b0f1

Please sign in to comment.