Search Gradle plugins

com.github.monosoul.yadegrap

This plugin provides a configurable delombok task. Compatibility table: yadegrap | lombok 0.0.1 | >=1.16.4

https://github.com/monosoul/yadegrap

Sources: https://github.com/monosoul/yadegrap

Version 0.0.1

Created 16 April 2019.


This plugin provides a configurable delombok task.
Compatibility table:
yadegrap | lombok
0.0.1 | >=1.16.4

Using the plugins DSL:

plugins {
  id("com.github.monosoul.yadegrap") version "0.0.1"
}

Using legacy plugin application:

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

apply(plugin = "com.github.monosoul.yadegrap")

Using the plugins DSL:

plugins {
  id "com.github.monosoul.yadegrap" version "0.0.1"
}

Using legacy plugin application:

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

apply plugin: "com.github.monosoul.yadegrap"

Learn how to apply plugins to subprojects