搜索 Gradle 插件

版本 0.5.1 (最新)

0.5.1

创建于 2024 年 3 月 15 日。

应用 kotlinx-benchmark 和 `allopen` 插件,并添加 koltinx-benchmark 依赖。

使用插件 DSL

plugins {
  id("com.huanshankeji.benchmark.kotlinx-benchmark-multiplatform-conventions") version "0.5.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.huanshankeji:kotlin-common-gradle-plugins:0.5.1")
  }
}

apply(plugin = "com.huanshankeji.benchmark.kotlinx-benchmark-multiplatform-conventions")

使用插件 DSL

plugins {
  id "com.huanshankeji.benchmark.kotlinx-benchmark-multiplatform-conventions" version "0.5.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.huanshankeji:kotlin-common-gradle-plugins:0.5.1"
  }
}

apply plugin: "com.huanshankeji.benchmark.kotlinx-benchmark-multiplatform-conventions"

了解如何应用插件到子项目