Search Gradle plugins

Version 2.0.0-SNAPSHOT (latest)

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"

Learn how to apply plugins to subprojects