Search Gradle plugins

Version 0.3.3 (latest)

Created 05 September 2023.

publish directly on your Github repository acting as a Maven repository or use Github Packages without hassle

Using the plugins DSL:

plugins {
  id("elect86.magik") version "0.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.elect86:plugin:0.3.3")
  }
}

apply(plugin = "elect86.magik")

Using the plugins DSL:

plugins {
  id "elect86.magik" version "0.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.elect86:plugin:0.3.3"
  }
}

apply plugin: "elect86.magik"

Learn how to apply plugins to subprojects