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.4
0.0.4
Created 19 November 2021.
This apply `maven-publish`, magik plugins and setup publishing
Using the plugins DSL:
plugins {
id("io.github.kotlin-graphics.publish") version "0.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.kotlin-graphics:publish:0.0.4")
}
}
apply(plugin = "io.github.kotlin-graphics.publish")
Using the plugins DSL:
plugins {
id "io.github.kotlin-graphics.publish" version "0.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.kotlin-graphics:publish:0.0.4"
}
}
apply plugin: "io.github.kotlin-graphics.publish"