搜索Gradle插件

版本 0.2.7(最新版本)

0.2.7

创建于2024年6月30日。

从HDVL源创建DVT项目的插件

使用插件DSL

plugins {
  id("com.verificationgentleman.gradle.hdvl.dvt") 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.dvt")

使用插件DSL

plugins {
  id "com.verificationgentleman.gradle.hdvl.dvt" 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.dvt"

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