搜索Gradle插件

版本 0.2.7(最新)

0.2.7

创建于2024年6月30日。

一个添加SVUnit对HDVL项目进行测试的插件

使用插件 DSL

plugins {
  id("com.verificationgentleman.gradle.hdvl.svunit") version "0.2.7"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.verificationgentleman.gradle:gradle-hdvl:0.2.7")
  }
}

apply(plugin = "com.verificationgentleman.gradle.hdvl.svunit")

使用插件 DSL

plugins {
  id "com.verificationgentleman.gradle.hdvl.svunit" version "0.2.7"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.verificationgentleman.gradle:gradle-hdvl:0.2.7"
  }
}

apply plugin: "com.verificationgentleman.gradle.hdvl.svunit"

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