com.zegreatrob.jsmints.plugins.wrapper
Owner: Rob Murdock
This plugin will generate boilerplate for external types.
https://github.com/robertfmurdock/jsmints
Sources: https://github.com/robertfmurdock/jsmints
Version 6.1.56 (latest)
6.1.56
Created 19 September 2024.
This plugin will generate boilerplate for external types.
Using the plugins DSL:
plugins {
id("com.zegreatrob.jsmints.plugins.wrapper") version "6.1.56"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.zegreatrob.jsmints:plugins:6.1.56")
}
}
apply(plugin = "com.zegreatrob.jsmints.plugins.wrapper")
Using the plugins DSL:
plugins {
id "com.zegreatrob.jsmints.plugins.wrapper" version "6.1.56"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.zegreatrob.jsmints:plugins:6.1.56"
}
}
apply plugin: "com.zegreatrob.jsmints.plugins.wrapper"