Search Gradle plugins

com.magnetichq.client-dependencies

Install client side dependencies from NPM or Bower by declaring dependencies in build.gradle, updated for Gradle 7.x.

https://github.com/piper-magnetic/client-dependencies-gradle

Sources: https://github.com/piper-magnetic/client-dependencies-gradle

Version 2.0.0 (latest)

Created 30 November 2021.

Install client side dependencies from NPM or Bower by declaring dependencies in build.gradle, updated for Gradle 7.x.

Using the plugins DSL:

plugins {
  id("com.magnetichq.client-dependencies") version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.magnetichq:client-dependencies-g7:2.0.0")
  }
}

apply(plugin = "com.magnetichq.client-dependencies")

Using the plugins DSL:

plugins {
  id "com.magnetichq.client-dependencies" version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.magnetichq:client-dependencies-g7:2.0.0"
  }
}

apply plugin: "com.magnetichq.client-dependencies"

Learn how to apply plugins to subprojects