summaryrefslogtreecommitdiff
path: root/build.gradle.kts
blob: 6c0c2335ac48e6795c32ef7a3b2068eb3ead7c2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * This file was generated by the Gradle 'init' task.
 *
 * 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("stack --version")

    doLast{
	System.out.println("hello sucker")
    }

}