de.malax.h-gradle
Owner: Manuel Fuchs
A Gradle plugin for deploying to Heroku.
https://github.com/heroku/heroku-gradle
Sources: https://github.com/heroku/heroku-gradle.git
Version 2.0.0-SNAPSHOT (latest)
2.0.0-SNAPSHOT
Created 22 July 2020.
A Gradle plugin for deploying to Heroku.
Using the plugins DSL:
plugins {
id("de.malax.h-gradle") version "2.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.malax.h-gradle:heroku-gradle:2.0.0-SNAPSHOT")
}
}
apply(plugin = "de.malax.h-gradle")
Using the plugins DSL:
plugins {
id "de.malax.h-gradle" version "2.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.malax.h-gradle:heroku-gradle:2.0.0-SNAPSHOT"
}
}
apply plugin: "de.malax.h-gradle"