Search Gradle plugins

Version 1.2.1 (latest)

Created 31 October 2018.

Evaluate your maven credentials settings only when it's necessary.

Using the plugins DSL:

plugins {
  id("pl.unity.lazy-credentials") version "1.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.pl.unity.gradle:lazy-credentials:1.2.1")
  }
}

apply(plugin = "pl.unity.lazy-credentials")

Using the plugins DSL:

plugins {
  id "pl.unity.lazy-credentials" version "1.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.pl.unity.gradle:lazy-credentials:1.2.1"
  }
}

apply plugin: "pl.unity.lazy-credentials"

Learn how to apply plugins to subprojects