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
Using the plugins DSL:
plugins {
id("com.hellofresh.gradle.deblibs") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.hellofresh.gradle:deblibs:1.0.0")
}
}
apply(plugin = "com.hellofresh.gradle.deblibs")
Using the plugins DSL:
plugins {
id "com.hellofresh.gradle.deblibs" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.hellofresh.gradle:deblibs:1.0.0"
}
}
apply plugin: "com.hellofresh.gradle.deblibs"