Search Gradle plugins

Version 1.0.6 (latest)

1.0.6

Created 02 August 2021.

A kotlin compiler plugin to make easy to write visitor pattern.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.anatawa12.auto-visitor") version "1.0.6"
}

See also:

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