Search Gradle plugins

nl.fabianm.kotlin.plugin.generated

A Kotlin compiler plugin that annotates Kotlin-generated methods to signify to code analyzers that these methods have been generated by the compiler.

https://github.com/fabianishere/kotlin-plugin-generated

Sources: https://github.com/fabianishere/kotlin-plugin-generated.git

Version 1.3.3

Created 28 August 2019.

A Kotlin compiler plugin that annotates Kotlin-generated methods to signify to code analyzers that these methods have been generated by the compiler.

Using the plugins DSL:

plugins {
  id("nl.fabianm.kotlin.plugin.generated") version "1.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("nl.fabianm.kotlin.plugin.generated:plugin-gradle:1.3.3")
  }
}

apply(plugin = "nl.fabianm.kotlin.plugin.generated")

Using the plugins DSL:

plugins {
  id "nl.fabianm.kotlin.plugin.generated" version "1.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "nl.fabianm.kotlin.plugin.generated:plugin-gradle:1.3.3"
  }
}

apply plugin: "nl.fabianm.kotlin.plugin.generated"

Learn how to apply plugins to subprojects