Search Gradle plugins

Version 0.1.19 (latest)

Created 21 February 2017.

A static course generator. So good, you can smoke it!

Add this plugin to your build using the plugins DSL:

plugins {
  id("in.shipk.unitplugin") version "0.1.19"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("in.shipk.unitplugin:in.shipk.unitplugin.gradle.plugin:0.1.19")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("in.shipk.unitplugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("in.shipk.unitplugin:in.shipk.unitplugin.gradle.plugin:0.1.19")
      }
    }
    
    apply(plugin = "in.shipk.unitplugin")
  • Applying plugins to all subprojects .