com.cmgapps.npm.versions
Owner: Christian Grach
Gradle plugin for checking your Kotlin/JS NPM package versions.
https://github.com/chrimaeon/gradle-npm-versions
Sources: https://github.com/chrimaeon/gradle-npm-versions.git
Version 0.4.1 (latest)
Created 27 November 2024.
Gradle plugin for checking your Kotlin/JS NPM package versions.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.cmgapps.npm.versions") version "0.4.1"
}
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.cmgapps.npm.versions:com.cmgapps.npm.versions.gradle.plugin:0.4.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.cmgapps.npm.versions") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.cmgapps.npm.versions:com.cmgapps.npm.versions.gradle.plugin:0.4.1") } } apply(plugin = "com.cmgapps.npm.versions")
- Applying plugins to all subprojects .