Search Gradle plugins

com.fipsoft.maven-repo-settings

Gradle plugin for resolving internal maven repository credentials directly from settings.xml file

https://github.com/h-ed/maven-repo-settings

Sources: https://github.com/h-ed/maven-repo-settings

Version 0.2.2

Created 19 June 2017.

Gradle plugin for resolving internal maven repository credentials directly from settings.xml file

Using the plugins DSL:

plugins {
  id("com.fipsoft.maven-repo-settings") version "0.2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.fipsoft.gradle:maven-repo-settings:0.2.2")
  }
}

apply(plugin = "com.fipsoft.maven-repo-settings")

Using the plugins DSL:

plugins {
  id "com.fipsoft.maven-repo-settings" version "0.2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.fipsoft.gradle:maven-repo-settings:0.2.2"
  }
}

apply plugin: "com.fipsoft.maven-repo-settings"

Learn how to apply plugins to subprojects