Search Gradle plugins

Version 5.4.88 (latest)

Created 27 April 2024.

This plugin will generate boilerplate for external types.

Using the plugins DSL:

plugins {
  id("com.zegreatrob.jsmints.plugins.wrapper") version "5.4.88"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.zegreatrob.jsmints:plugins:5.4.88")
  }
}

apply(plugin = "com.zegreatrob.jsmints.plugins.wrapper")

Using the plugins DSL:

plugins {
  id "com.zegreatrob.jsmints.plugins.wrapper" version "5.4.88"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.zegreatrob.jsmints:plugins:5.4.88"
  }
}

apply plugin: "com.zegreatrob.jsmints.plugins.wrapper"

Learn how to apply plugins to subprojects