搜索 Gradle 插件

版本 0.13.0(最新版)

0.13.0

创建日期:2022年5月18日。

Http 黑盒测试环境管理器

使用 插件 DSL

plugins {
  id("io.wttech.habit") version "0.13.0"
}

使用 传统插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.wttech.habit:gradle-plugin:0.13.0")
  }
}

apply(plugin = "io.wttech.habit")

使用 插件 DSL

plugins {
  id "io.wttech.habit" version "0.13.0"
}

使用 传统插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.wttech.habit:gradle-plugin:0.13.0"
  }
}

apply plugin: "io.wttech.habit"

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