org.brightify.hyperdrive
Owner: Tadeas Kriz
Kotlin Multiplatform extensions plugin.
Sources: https://github.com/Brightify/hyperdrive-kt
Version 0.1.139 (latest)
0.1.139
Created 15 March 2022.
Kotlin Multiplatform extensions plugin.
Using the plugins DSL:
plugins {
id("org.brightify.hyperdrive") version "0.1.139"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.brightify.hyperdrive:plugin-gradle:0.1.139")
}
}
apply(plugin = "org.brightify.hyperdrive")
Using the plugins DSL:
plugins {
id "org.brightify.hyperdrive" version "0.1.139"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.brightify.hyperdrive:plugin-gradle:0.1.139"
}
}
apply plugin: "org.brightify.hyperdrive"