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

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.skhatri.reposet") version "0.1.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.skhatri:gradle-reposet-plugin:0.1.2")
      }
    }
    
    apply(plugin = "com.github.skhatri.reposet")
  • Applying plugins to all subprojects .