io.github.kotlin-graphics.align
Owner:
Giuseppe Barbieri
This plugins performs a dynamic alignment on ::appy based on the current version inside the platform lockfile
https://github.com/kotlin-graphics/build-logic
Version 0.0.8 (latest)
Created 20 April 2022.
This plugins performs a dynamic alignment based on the current version inside the platform lockfile
Using the plugins DSL:
plugins {
id("io.github.kotlin-graphics.align") version "0.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.kotlin-graphics:align:0.0.8")
}
}
apply(plugin = "io.github.kotlin-graphics.align")
Using the plugins DSL:
plugins {
id "io.github.kotlin-graphics.align" version "0.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.kotlin-graphics:align:0.0.8"
}
}
apply plugin: "io.github.kotlin-graphics.align"