搜索Gradle插件

name.remal.mark-classes-dependent-on-kotlin-runtime

拥有者: Semyon Levin

处理编译的类并添加@RequiresKotlinRuntime注解,如果类/方法需要Kotlin运行时

https://remal.gitlab.io/gradle-plugins/

源代码:https://gitlab.com/remal/name.remal.gradle-plugins.git

版本 1.0.113(最新版)

1.0.113

创建时间:2019年2月12日。

处理编译的类并在类/方法需要Kotlin运行时添加RequiresKotlinRuntime注解

使用plugins DSL

plugins {
  id("name.remal.mark-classes-dependent-on-kotlin-runtime") version "1.0.113"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("name.remal:gradle-plugins:1.0.113")
  }
}

apply(plugin = "name.remal.mark-classes-dependent-on-kotlin-runtime")

使用plugins DSL

plugins {
  id "name.remal.mark-classes-dependent-on-kotlin-runtime" version "1.0.113"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "name.remal:gradle-plugins:1.0.113"
  }
}

apply plugin: "name.remal.mark-classes-dependent-on-kotlin-runtime"

了解如何将插件应用于子项目