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

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)

Add this plugin to your build using the plugins DSL:

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

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.supcis.dependency-resolution:com.supcis.dependency-resolution.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.supcis.dependency-resolution")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.supcis.dependency-resolution:com.supcis.dependency-resolution.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "com.supcis.dependency-resolution")
  • Applying plugins to all subprojects .