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)

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:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.github.skhatri.reposet:com.github.skhatri.reposet.gradle.plugin:0.1.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.skhatri.reposet")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.skhatri.reposet:com.github.skhatri.reposet.gradle.plugin:0.1.2")
      }
    }
    
    apply(plugin = "com.github.skhatri.reposet")
  • Applying plugins to all subprojects .