Search Gradle plugins

Version 0.1 (latest)

0.1

Created 07 September 2020.

Develop and publish your own plugin for the 'StudyManager'.

Using the plugins DSL:

plugins {
  id("com.github.studymanager.plugincreator") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.studymanager.plugincreator:PluginCreator:0.1")
  }
}

apply(plugin = "com.github.studymanager.plugincreator")

Using the plugins DSL:

plugins {
  id "com.github.studymanager.plugincreator" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.studymanager.plugincreator:PluginCreator:0.1"
  }
}

apply plugin: "com.github.studymanager.plugincreator"

Learn how to apply plugins to subprojects