搜索Gradle插件

nl.fabianm.kotlin.plugin.generated

一个Kotlin编译插件,用于注释由编译器生成的Kotlin方法,以便代码分析器知道这些方法是由编译器生成的。

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

源代码: https://github.com/fabianishere/kotlin-plugin-generated.git

版本 1.5.0(最新版本)

1.5.0

创建于 2020年2月7日。

一个Kotlin编译插件,用于注释由编译器生成的Kotlin方法,以便代码分析器知道这些方法是由编译器生成的。

使用插件DSL

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

使用传统插件应用

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

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

使用插件DSL

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

使用传统插件应用

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

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

学习如何将插件应用到子项目中