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 1.0.0 (latest)

Created 28 July 2021.


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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects