io.github.jamesfchen.api-plugin
Owner: electrolytej
api-plugin
https://github.com/JamesfChen/bundles-assembler
Sources: https://github.com/JamesfChen/bundles-assembler
Using the plugins DSL:
plugins {
id("io.github.jamesfchen.api-plugin") version "1.7.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.jamesfchen:bundles-assembler-plugin:1.7.1")
}
}
apply(plugin = "io.github.jamesfchen.api-plugin")
Using the plugins DSL:
plugins {
id "io.github.jamesfchen.api-plugin" version "1.7.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.jamesfchen:bundles-assembler-plugin:1.7.1"
}
}
apply plugin: "io.github.jamesfchen.api-plugin"