com.github.skhatri.reposet
Owner: Suresh Khatri
This plugin will provide config to set repositories and plugins for your projects. This can be useful to add default repository for personal or enterprise projects
https://github.com/skhatri/gradle-reposet-plugin
Sources: https://github.com/skhatri/gradle-reposet-plugin.git
Version 0.1.2 (latest)
0.1.2
Created 17 September 2021.
This plugin will provide config to set repositories and plugins for your projects. This can be useful to add default repository for personal or enterprise projects
Using the plugins DSL:
plugins {
id("com.github.skhatri.reposet") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.skhatri:gradle-reposet-plugin:0.1.2")
}
}
apply(plugin = "com.github.skhatri.reposet")
Using the plugins DSL:
plugins {
id "com.github.skhatri.reposet" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.skhatri:gradle-reposet-plugin:0.1.2"
}
}
apply plugin: "com.github.skhatri.reposet"