nl.fabianm.kotlin.plugin.generated
Owner: Fabian Mastenbroek
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.5.0 (latest)
1.5.0
Created 07 February 2020.
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.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("nl.fabianm.kotlin.plugin.generated:plugin-gradle:1.5.0")
}
}
apply(plugin = "nl.fabianm.kotlin.plugin.generated")
Using the plugins DSL:
plugins {
id "nl.fabianm.kotlin.plugin.generated" version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "nl.fabianm.kotlin.plugin.generated:plugin-gradle:1.5.0"
}
}
apply plugin: "nl.fabianm.kotlin.plugin.generated"