搜索 Gradle 插件

版本 0.0.2 (最新版)

0.0.2

创建于 2022 年 11 月 23 日。

一个用于在 JVM 项目中启动 playwright 的简单插件

使用 plugins DSL

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

使用 旧插件应用方式

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

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

使用 plugins DSL

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

使用 旧插件应用方式

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

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

了解如何将插件应用于子项目