io.github.kotlin-graphics.utils
Owner:
Giuseppe Barbieri
This setups brings into the classpath additional wrapper to import kx project conveniently
https://github.com/kotlin-graphics/build-logic
Sources: https://github.com/kotlin-graphics/build-logic
Version 0.0.5 (latest)
Created 19 November 2021.
This setups brings into the classpath additional wrapper to import kx project conveniently
Using the plugins DSL:
plugins {
id("io.github.kotlin-graphics.utils") version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.kotlin-graphics:utils:0.0.5")
}
}
apply(plugin = "io.github.kotlin-graphics.utils")
Using the plugins DSL:
plugins {
id "io.github.kotlin-graphics.utils" version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.kotlin-graphics:utils:0.0.5"
}
}
apply plugin: "io.github.kotlin-graphics.utils"