ws.gross.private-repo
Owner: Konstantin Gribov
Settings plugin to configure dependencyResolutionManagement and pluginManagement to use private Nexus/Artifactory repository with auth and convenient defaults.
https://github.com/grossws/private-repo
Sources: https://github.com/grossws/gradle-private-repo-plugin.git
Version 0.14.0
0.14.0
Created 21 February 2022.
Gradle Settings plugin to configure dependencyResolutionManagement and pluginManagement
to use private Nexus/Artifactory repository with auth and convenient defaults.
Using the plugins DSL:
plugins {
id("ws.gross.private-repo") version "0.14.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ws.gross.gradle:private-repo:0.14.0")
}
}
apply(plugin = "ws.gross.private-repo")
Using the plugins DSL:
plugins {
id "ws.gross.private-repo" version "0.14.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ws.gross.gradle:private-repo:0.14.0"
}
}
apply plugin: "ws.gross.private-repo"