搜索 Gradle 插件

版本 6.1.0(最新版)

6.1.0

创建于 2021 年 1 月 19 日。

类型安全的维度分析和单位转换(在 Kotlin 中)。

使用 插件 DSL

plugins {
  id("info.kunalsheth.units") version "6.1.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("info.kunalsheth:plugin:6.1.0")
  }
}

apply(plugin = "info.kunalsheth.units")

使用 插件 DSL

plugins {
  id "info.kunalsheth.units" version "6.1.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "info.kunalsheth:plugin:6.1.0"
  }
}

apply plugin: "info.kunalsheth.units"

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