Search Gradle plugins

Version 1.5 (latest)

Created 17 March 2020.

Juspay Assets Downloader PLugin

Using the plugins DSL:

plugins {
  id("JuspayAssets.greeting") version "1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.JuspayAssets.greeting:JuspayAssets:1.5")
  }
}

apply(plugin = "JuspayAssets.greeting")

Using the plugins DSL:

plugins {
  id "JuspayAssets.greeting" version "1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.JuspayAssets.greeting:JuspayAssets:1.5"
  }
}

apply plugin: "JuspayAssets.greeting"

Learn how to apply plugins to subprojects