Search Gradle plugins

Version 0.8.1 (latest)

Created 14 May 2020.

The plugin to manage benchmarks on your CI

Using the plugins DSL:

plugins {
  id("com.47deg.hood") version "0.8.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.47deg:hood:0.8.1")
  }
}

apply(plugin = "com.47deg.hood")

Using the plugins DSL:

plugins {
  id "com.47deg.hood" version "0.8.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.47deg:hood:0.8.1"
  }
}

apply plugin: "com.47deg.hood"

Learn how to apply plugins to subprojects