vicJuspay.greeting
Owner: Vishal Chaurasiya
VIC Juspay Testing plugin
https://vishalChaurasiya@bitbucket.org/vishalChaurasiya/vicjuspayplugin
Sources: https://vishalChaurasiya@bitbucket.org/vishalChaurasiya/vicjuspayplugin.git
Add this plugin to your build using the plugins DSL:
plugins {
id("vicJuspay.greeting") version "3.3"
}
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("vicJuspay.greeting:vicJuspay.greeting.gradle.plugin:3.3") }
It can then be applied in the precompiled script plugin:plugins { id("vicJuspay.greeting") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("vicJuspay.greeting:vicJuspay.greeting.gradle.plugin:3.3") } } apply(plugin = "vicJuspay.greeting")
- Applying plugins to all subprojects .