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