Search Gradle plugins

Version 0.13.0 (latest)

Created 18 May 2022.

Http Black Box Tester environment manager

Using the plugins DSL:

plugins {
  id("io.wttech.habit") version "0.13.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.wttech.habit:gradle-plugin:0.13.0")
  }
}

apply(plugin = "io.wttech.habit")

Using the plugins DSL:

plugins {
  id "io.wttech.habit" version "0.13.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.wttech.habit:gradle-plugin:0.13.0"
  }
}

apply plugin: "io.wttech.habit"

Learn how to apply plugins to subprojects