com.sj.componentplugin
Owner: xiaojia
Greetings from here!
https://github.com/mcokos/componentplugin
Sources: https://github.com/mcokos/componentplugin.git
Version 1.1 (latest)
1.1
Created 02 August 2019.
Greetings from here!
Using the plugins DSL:
plugins {
id("com.sj.componentplugin") version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.sj.componentplugin:componentplugin:1.1")
}
}
apply(plugin = "com.sj.componentplugin")
Using the plugins DSL:
plugins {
id "com.sj.componentplugin" version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.sj.componentplugin:componentplugin:1.1"
}
}
apply plugin: "com.sj.componentplugin"