info.kunalsheth.units
Owner: Kunal Sheth
Type-safe dimensional analysis and unit conversion in Kotlin.
Sources: https://github.com/kunalsheth/units-of-measure
Version 6.0.1
6.0.1
Created 10 December 2019.
Type-safe dimensional analysis and unit conversion in Kotlin.
Using the plugins DSL:
plugins {
id("info.kunalsheth.units") version "6.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.info.kunalsheth:plugin:6.0.1")
}
}
apply(plugin = "info.kunalsheth.units")
Using the plugins DSL:
plugins {
id "info.kunalsheth.units" version "6.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.info.kunalsheth:plugin:6.0.1"
}
}
apply plugin: "info.kunalsheth.units"