Search Gradle plugins

Version 1.0.1 (latest)

1.0.1

Created 03 April 2021.

A kotlin compiler plugin to generate toString().

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.anatawa12.auto-tostring") version "1.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.anatawa12.auto-tostring:gradle-plugin:1.0.1")
      }
    }
    
    apply(plugin = "com.anatawa12.auto-tostring")
  • Applying plugins to all subprojects .