搜索Gradle插件

版本 0.0.3-beta(最新版本)

0.0.3-beta

创建日期 2024年6月22日。

内联newInstance而不使用反射。

使用插件DSL

plugins {
  id("host.bytedance.kotlin-newInstance") version "0.0.3-beta"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("host.bytedance:kotlin-newInstance-gradle:0.0.3-beta")
  }
}

apply(plugin = "host.bytedance.kotlin-newInstance")

使用插件DSL

plugins {
  id "host.bytedance.kotlin-newInstance" version "0.0.3-beta"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "host.bytedance:kotlin-newInstance-gradle:0.0.3-beta"
  }
}

apply plugin: "host.bytedance.kotlin-newInstance"

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