Search Gradle plugins

Version 0.0.2 (latest)

Created 23 November 2022.

A simple plugin to bootstrap playwright in a JVM project

Using the plugins DSL:

plugins {
  id("net.hydrashead.gradle-playwright") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.hydrashead:plugin:0.0.2")
  }
}

apply(plugin = "net.hydrashead.gradle-playwright")

Using the plugins DSL:

plugins {
  id "net.hydrashead.gradle-playwright" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.hydrashead:plugin:0.0.2"
  }
}

apply plugin: "net.hydrashead.gradle-playwright"

Learn how to apply plugins to subprojects