We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f76d72 commit 71de840Copy full SHA for 71de840
plugin/src/main/kotlin/hu.vanio.gradle.common.gradle.kts
@@ -1,14 +1,14 @@
1
tasks.register("greeting") {
2
group = "vanio-gradle"
3
- description = "Plugin alapszintű működését lehet ellenőrizni - üdvözlő szöveget jelenít meg"
+ description = "Show a welcome message"
4
doLast {
5
println("Hello from plugin 'vanio-gradle'")
6
}
7
8
9
tasks.register("showPlugins") {
10
11
- description = "Projectben szereplő plugin-ek listája"
+ description = "Show the list of plugins included in the project"
12
13
project.plugins.forEach {
14
println("${it.javaClass.name} -> " +
0 commit comments