com.hellofresh.gradle.deblibs
Owner: HelloFresh Android Team
Uploads apps dependencies to github
https://github.com/hellofresh/deblibs-gradle-plugin
Sources: https://github.com/hellofresh/deblibs-gradle-plugin
Version 2.2.0 (latest)
2.2.0
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"