Search Gradle plugins

Version 1.0.6

Created 16 November 2018.

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

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.liferay.whip"

Learn how to apply plugins to subprojects