com.zegreatrob.jsmints.plugins.wrapper
所有者: Rob Murdock
此插件将生成外部类型的基础代码。
https://github.com/robertfmurdock/jsmints
来源:https://github.com/robertfmurdock/jsmints
使用plugins DSL
plugins {
id("com.zegreatrob.jsmints.plugins.wrapper") version "6.1.33"
}
使用旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.zegreatrob.jsmints:plugins:6.1.33")
}
}
apply(plugin = "com.zegreatrob.jsmints.plugins.wrapper")
使用plugins DSL
plugins {
id "com.zegreatrob.jsmints.plugins.wrapper" version "6.1.33"
}
使用旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.zegreatrob.jsmints:plugins:6.1.33"
}
}
apply plugin: "com.zegreatrob.jsmints.plugins.wrapper"