Search Gradle plugins

Version 3.3.1

3.3.1

Created 20 October 2016.

https://github.com/evant/gradle-retrolambda.git

Add this plugin to your build using the plugins DSL:

plugins {
  id("me.tatarka.retrolambda") version "3.3.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.me.tatarka:gradle-retrolambda:3.3.1")
      }
    }
    
    apply(plugin = "me.tatarka.retrolambda")
  • Applying plugins to all subprojects .