com.liferay.whip
Owner: Liferay
The Whip Gradle plugin lets you use the Liferay Whip library to ensure that unit tests fully cover your project's code.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-whip
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-whip
Version 1.0.10 (latest)
1.0.10
Created 04 August 2023.
The Whip Gradle plugin lets you use the Liferay Whip library to ensure that unit tests fully cover your project's code.
Using the plugins DSL:
plugins {
id("com.liferay.whip") version "1.0.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-whip:1.0.10")
}
}
apply(plugin = "com.liferay.whip")
Using the plugins DSL:
plugins {
id "com.liferay.whip" version "1.0.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-whip:1.0.10"
}
}
apply plugin: "com.liferay.whip"