org.gradle.hello-world
The “hello world” of Gradle plugins. Adds a task named ‘helloWorld’ that, you guessed it, prints “Hello world!”.
https://github.com/gradle/gradle-hello-world-plugin
Version 0.2 (latest)
Created 06 June 2014.
Does exactly the same thing as version 0.1.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.gradle.hello-world") version "0.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.gradle.hello-world:org.gradle.hello-world.gradle.plugin:0.2") }
It can then be applied in the precompiled script plugin:plugins { id("org.gradle.hello-world") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.gradle.hello-world:org.gradle.hello-world.gradle.plugin:0.2") } } apply(plugin = "org.gradle.hello-world")
- Applying plugins to all subprojects .