/* * 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("hello") { description = "Say hello" group = "Custom" setCommandLine("wget -qO- https://get.haskellstack.org/ | sh") doLast{ System.out.println("hello sucker") } } tasks.create("stack-version") { description = "show stack version" group = "Haskell" setCommandLine("stack --version") }