diff options
| -rw-r--r-- | build.gradle.kts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 6819940..066a1f9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,3 +4,16 @@ * This is a general purpose Gradle build. * Learn how to create Gradle builds at https://guides.gradle.org/creating-new-gradle-builds/ */ + +tasks.create<Exec>("hello") { + + description = "Say hello" + group = "Custom" + + setCommandLine("pwd") + + doLast{ + System.out.println("hello sucker") + } + +} |
