Search Gradle plugins

Version 0.0.2

Created 20 November 2018.

Resource management tool for stress-free development

Using the plugins DSL:

plugins {
  id("hu.ponte.respresso") version "0.0.2"
}

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.2")
  }
}

apply(plugin = "hu.ponte.respresso")

Using the plugins DSL:

plugins {
  id "hu.ponte.respresso" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.hu.ponte:respresso-gradle-plugin:0.0.2"
  }
}

apply plugin: "hu.ponte.respresso"

Learn how to apply plugins to subprojects