Search Gradle plugins

com.github.skhatri.reposet

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.1

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.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.skhatri:com.github.skhatri.reposet:0.1.1")
  }
}

apply(plugin = "com.github.skhatri.reposet")

Using the plugins DSL:

plugins {
  id "com.github.skhatri.reposet" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.skhatri:com.github.skhatri.reposet:0.1.1"
  }
}

apply plugin: "com.github.skhatri.reposet"

Learn how to apply plugins to subprojects