plugins {
id("com.github.rkotkiewicz.print-ext") version "0.0.1"
}
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.rkotkiewicz:print-ext-plugin:0.0.1")
}
}
apply(plugin = "com.github.rkotkiewicz.print-ext")
plugins {
id "com.github.rkotkiewicz.print-ext" version "0.0.1"
}
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.rkotkiewicz:print-ext-plugin:0.0.1"
}
}
apply plugin: "com.github.rkotkiewicz.print-ext"