net.hydrashead.gradle-playwright
Owner:
Adam Bertrand
A simple plugin to bootstrap playwright in a JVM project
https://github.com/Hydragyrum/gradle-playwright-plugin
Sources: https://github.com/Hydragyrum/gradle-playwright-plugin
Version 0.0.2 (latest)
Created 23 November 2022.
A simple plugin to bootstrap playwright in a JVM project
Add this plugin to your build using the plugins DSL:
plugins {
id("net.hydrashead.gradle-playwright") version "0.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("net.hydrashead.gradle-playwright:net.hydrashead.gradle-playwright.gradle.plugin:0.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("net.hydrashead.gradle-playwright") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.hydrashead.gradle-playwright:net.hydrashead.gradle-playwright.gradle.plugin:0.0.2") } } apply(plugin = "net.hydrashead.gradle-playwright")
- Applying plugins to all subprojects .