io.github.kotlin-graphics.publish
Owner: Giuseppe Barbieri
This apply `maven-publish`, magik plugins and setup publishing
https://github.com/kotlin-graphics/build-logic
Sources: https://github.com/kotlin-graphics/build-logic
Version 0.0.8 (latest)
0.0.8
Created 20 April 2022.
This apply `maven-publish`, magik plugins and setup publishing
Using the plugins DSL:
plugins {
id("io.github.kotlin-graphics.publish") version "0.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.kotlin-graphics:publish:0.0.8")
}
}
apply(plugin = "io.github.kotlin-graphics.publish")
Using the plugins DSL:
plugins {
id "io.github.kotlin-graphics.publish" version "0.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.kotlin-graphics:publish:0.0.8"
}
}
apply plugin: "io.github.kotlin-graphics.publish"