io.github.kotlin-graphics.align
所有者: Giuseppe Barbieri
此插件基于平台锁文件中的当前版本在 ::appy 上执行动态对齐
https://github.com/kotlin-graphics/build-logic
来源: https://github.com/kotlin-graphics/build-logic
使用 plugins DSL
plugins {
id("io.github.kotlin-graphics.align") version "0.0.8"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.kotlin-graphics:align:0.0.8")
}
}
apply(plugin = "io.github.kotlin-graphics.align")
使用 plugins DSL
plugins {
id "io.github.kotlin-graphics.align" version "0.0.8"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.kotlin-graphics:align:0.0.8"
}
}
apply plugin: "io.github.kotlin-graphics.align"