Search Gradle plugins

Version 2.0.0

Created 19 February 2019.

Uploads apps dependencies to github

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects