Search Gradle plugins

ws.gross.private-repo.base

Gradle Settings plugin to register privateRepo extension. Used by other settings plugins.

https://github.com/grossws/private-repo

Sources: https://github.com/grossws/private-repo.git

Version 0.18.0-rc.5

0.18.0-rc.5

Created 31 March 2023.

Gradle Settings plugin to register privateRepo extension. Used by other settings plugins.

Add this plugin to your build using the plugins DSL:

plugins {
  id("ws.gross.private-repo.base") version "0.18.0-rc.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ws.gross.gradle:private-repo:0.18.0-rc.5")
      }
    }
    
    apply(plugin = "ws.gross.private-repo.base")
  • Applying plugins to all subprojects .