com.fipsoft.maven-repo-settings
Owner: Edgar Harutyunyan
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.1-SNAPSHOT
0.1-SNAPSHOT
Created 18 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.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.fipsoft.gradle:maven-repo-settings:0.1-SNAPSHOT")
}
}
apply(plugin = "com.fipsoft.maven-repo-settings")
Using the plugins DSL:
plugins {
id "com.fipsoft.maven-repo-settings" version "0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.fipsoft.gradle:maven-repo-settings:0.1-SNAPSHOT"
}
}
apply plugin: "com.fipsoft.maven-repo-settings"