Search Gradle plugins

Version 1.0-SNAPSHOT (latest)

1.0-SNAPSHOT

Created 10 January 2021.

Download the pdf template from the specified path

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.alexmazharouski:downloader:1.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.github.alexmazharouski")
  • Applying plugins to all subprojects .