Search Gradle plugins

org.example.togloom-plugin

Owner: bbn

This is experimental plugin for playing around with Gradle plugin development 3.1.4

Sources: github.com/ubbn/org.example.mmcom-test-plugin

Version 3.2.1

Created 12 July 2018.

This is experimental plugin for playing around with Gradle plugin development 3.2.1

Using the plugins DSL:

plugins {
  id("org.example.togloom-plugin") version "3.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.example.togloom-plugin:buildSrc:3.2.1")
  }
}

apply(plugin = "org.example.togloom-plugin")

Using the plugins DSL:

plugins {
  id "org.example.togloom-plugin" version "3.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.example.togloom-plugin:buildSrc:3.2.1"
  }
}

apply plugin: "org.example.togloom-plugin"

Learn how to apply plugins to subprojects