Search Gradle plugins

Version 0.3.1

0.3.1

Created 25 November 2024.

This plugin reduces repetition when specifying private GitHub packages as gradle dependencies

Using the plugins DSL:

plugins {
  id("com.moneyforward.private-repository-plugin") version "0.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.moneyforward.gradle:private-repository-plugin:0.3.1")
  }
}

apply(plugin = "com.moneyforward.private-repository-plugin")

Using the plugins DSL:

plugins {
  id "com.moneyforward.private-repository-plugin" version "0.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.moneyforward.gradle:private-repository-plugin:0.3.1"
  }
}

apply plugin: "com.moneyforward.private-repository-plugin"

Learn how to apply plugins to subprojects