搜索Gradle插件

版本 1.0.10(最新版)

1.0.10

创建日期:2023年8月4日。

The Whip Gradle插件允许您使用Liferay Whip库,以确保单元测试完全覆盖项目代码。

使用插件DSL

plugins {
  id("com.liferay.whip") version "1.0.10"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.liferay:gradle-plugins-whip:1.0.10")
  }
}

apply(plugin = "com.liferay.whip")

使用插件DSL

plugins {
  id "com.liferay.whip" version "1.0.10"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.liferay:gradle-plugins-whip:1.0.10"
  }
}

apply plugin: "com.liferay.whip"

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