Search Gradle plugins

Version 6.1.92

Created 26 November 2024.

This plugin will generate boilerplate for external types.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.zegreatrob.jsmints.plugins.wrapper:com.zegreatrob.jsmints.plugins.wrapper.gradle.plugin:6.1.92")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.zegreatrob.jsmints.plugins.wrapper")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.zegreatrob.jsmints.plugins.wrapper:com.zegreatrob.jsmints.plugins.wrapper.gradle.plugin:6.1.92")
      }
    }
    
    apply(plugin = "com.zegreatrob.jsmints.plugins.wrapper")
  • Applying plugins to all subprojects .