搜索 Gradle 插件

版本 7.0(最新版)

7.0

创建时间:2023 年 1 月 2 日。

一个简化在 LambdaTest 上运行 Geb 测试的插件

使用插件 DSL

plugins {
  id("org.gebish.lambdatest") version "7.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.gebish:geb-gradle:7.0")
  }
}

apply(plugin = "org.gebish.lambdatest")

使用插件 DSL

plugins {
  id "org.gebish.lambdatest" version "7.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.gebish:geb-gradle:7.0"
  }
}

apply plugin: "org.gebish.lambdatest"

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