Search Gradle plugins

Version 1.0-SNAPSHOT (latest)

Created 10 January 2021.

Download the pdf template from the specified path

Using the plugins DSL:

plugins {
  id("com.github.alexmazharouski") version "1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.alexmazharouski:downloader:1.0-SNAPSHOT")
  }
}

apply(plugin = "com.github.alexmazharouski")

Using the plugins DSL:

plugins {
  id "com.github.alexmazharouski" version "1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.alexmazharouski:downloader:1.0-SNAPSHOT"
  }
}

apply plugin: "com.github.alexmazharouski"

Learn how to apply plugins to subprojects