Search Gradle plugins

io.github.andob.jep8209434

Can't wait for Concise Method Bodies JEP to become reality! This plugin provides Concise Method Bodies syntax on present Java versions.

https://github.com/andob/retro-concise-method-bodies

Sources: https://github.com/andob/retro-concise-method-bodies

Version 1.0.5 (latest)

Created 10 November 2021.

Can't wait for Concise Method Bodies JEP to become reality! This plugin provides Concise Method Bodies syntax on present Java versions.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.andob.jep8209434") version "1.0.5"
}

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("io.github.andob.jep8209434:io.github.andob.jep8209434.gradle.plugin:1.0.5")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.andob.jep8209434")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.andob.jep8209434:io.github.andob.jep8209434.gradle.plugin:1.0.5")
      }
    }
    
    apply(plugin = "io.github.andob.jep8209434")
  • Applying plugins to all subprojects .