Search Gradle plugins

com.supcis.dependency-resolution

Adds a maven repository to the dependency resolution configuration that is configured via environment variables: - MAVEN_DOWNLOAD_URL: the base URL for the maven repository - MAVEN_USER: the username for the maven repository (optional) - MAVEN_PASSWORD: the password for the maven repository (optional)

https://github.com/Element-Logic/gradle-dependency-resolution-plugin

Sources: https://github.com/Element-Logic/gradle-dependency-resolution-plugin.git

Version 1.0.0 (latest)

1.0.0

Created 08 November 2024.

Adds a maven repository to the dependency resolution configuration that is configured via environment variables: - MAVEN_DOWNLOAD_URL: the base URL for the maven repository - MAVEN_USER: the username for the maven repository (optional) - MAVEN_PASSWORD: the password for the maven repository (optional)

Using the plugins DSL:

plugins {
  id("com.supcis.dependency-resolution") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.supcis.plugins.gradle:gradle-dependency-resolution-plugin:1.0.0")
  }
}

apply(plugin = "com.supcis.dependency-resolution")

Using the plugins DSL:

plugins {
  id "com.supcis.dependency-resolution" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.supcis.plugins.gradle:gradle-dependency-resolution-plugin:1.0.0"
  }
}

apply plugin: "com.supcis.dependency-resolution"

Learn how to apply plugins to subprojects