Search Gradle plugins

com.acierto.private-npm-nexus

Gradle plugin for generating the configuration to download npm packages from the private Nexus

https://github.com/acierto/gradle-private-npm-nexus

Sources: https://github.com/acierto/gradle-private-npm-nexus

Version 1.0.3 (latest)

Created 16 March 2020.

Gradle plugin for generating the configuration to download npm packages from the private Nexus

Using the plugins DSL:

plugins {
  id("com.acierto.private-npm-nexus") version "1.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.acierto.private-npm-nexus:gradle-private-npm-nexus:1.0.3")
  }
}

apply(plugin = "com.acierto.private-npm-nexus")

Using the plugins DSL:

plugins {
  id "com.acierto.private-npm-nexus" version "1.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.acierto.private-npm-nexus:gradle-private-npm-nexus:1.0.3"
  }
}

apply plugin: "com.acierto.private-npm-nexus"

Learn how to apply plugins to subprojects