Search Gradle plugins

Version 2.2.0 (latest)

Created 13 February 2020.

Uploads apps dependencies to github

Using the plugins DSL:

plugins {
  id("com.hellofresh.gradle.deblibs") version "2.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.hellofresh.gradle:deblibs:2.2.0")
  }
}

apply(plugin = "com.hellofresh.gradle.deblibs")

Using the plugins DSL:

plugins {
  id "com.hellofresh.gradle.deblibs" version "2.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.hellofresh.gradle:deblibs:2.2.0"
  }
}

apply plugin: "com.hellofresh.gradle.deblibs"

Learn how to apply plugins to subprojects