Search Gradle plugins

com.zegreatrob.jsmints.plugins.jspackage

This plugin will load Javascript dependencies from a package.json file and apply them to a Kotlin JS gradle project.

https://github.com/robertfmurdock/jsmints

Sources: https://github.com/robertfmurdock/jsmints

Version 6.1.92

Created 26 November 2024.

This plugin will load Javascript dependencies from a package.json file and apply them to a Kotlin JS gradle project.

Add this plugin to your build using the plugins DSL:

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