Groovy Basic Application Sample
version 6.1-milestone-1
You can open the samples inside an IDE using the IntelliJ native importer or Eclipse Buildship. |
This sample shows how a simple Groovy application can be built with Gradle. The application has no dependencies aside from the Groovy runtime and the build has minimal configuration.
build.gradle
plugins {
id 'groovy'
id 'application'
}
version = '1.0.2'
group = 'org.gradle.sample'
repositories {
jcenter()
}
dependencies {
implementation 'org.codehaus.groovy:groovy-all:2.5.7'
}
application {
mainClassName = 'org.gradle.sample.Main'
}
build.gradle.kts
plugins {
groovy
application
}
version = "1.0.2"
group = "org.gradle.sample"
repositories {
jcenter()
}
dependencies {
implementation("org.codehaus.groovy:groovy-all:2.5.7")
}
application {
mainClassName = "org.gradle.sample.Main"
}
To build and run the application:
$ ./gradlew run > Task :run Hello, World! BUILD SUCCESSFUL in 1s 2 actionable tasks: 2 executed
For more information, see Application Plugin reference chapter. You can also get started quickly using the Build Init Plugin.