hu.ponte.respresso
Owner: Ponte hu
Resource management tool for stress-free development
Sources: https://github.com/jozsefmezei/respresso-client-android
Version 0.0.3 (latest)
0.0.3
Created 30 November 2018.
Resource management tool for stress-free development
Using the plugins DSL:
plugins {
id("hu.ponte.respresso") version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.hu.ponte:respresso-gradle-plugin:0.0.3")
}
}
apply(plugin = "hu.ponte.respresso")
Using the plugins DSL:
plugins {
id "hu.ponte.respresso" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.hu.ponte:respresso-gradle-plugin:0.0.3"
}
}
apply plugin: "hu.ponte.respresso"