Search Gradle plugins

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.8

1.0.8

Created 04 March 2020.

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.8"
}

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.8")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.liferay.whip"

Learn how to apply plugins to subprojects