io.github.kotlin-graphics.basic
Owner: Giuseppe Barbieri
This setups the main variant for jdk11 and the jdk8 variant and brings source and test platform dependencies
https://github.com/kotlin-graphics/build-logic
Sources: https://github.com/kotlin-graphics/build-logic
Version 0.0.11 (latest)
0.0.11
Created 20 April 2022.
This setups the main variant for jdk11 and the jdk8 variant and brings source and test platform dependencies
Using the plugins DSL:
plugins {
id("io.github.kotlin-graphics.basic") version "0.0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.kotlin-graphics:basic:0.0.11")
}
}
apply(plugin = "io.github.kotlin-graphics.basic")
Using the plugins DSL:
plugins {
id "io.github.kotlin-graphics.basic" version "0.0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.kotlin-graphics:basic:0.0.11"
}
}
apply plugin: "io.github.kotlin-graphics.basic"