com.moneyforward.private-repository-plugin
Owner: Evan Cowin
This plugin reduces repetition when specifying private GitHub packages as gradle dependencies
https://github.com/moneyforward/gradle-private-repository-plugin
Sources: https://github.com/moneyforward/gradle-private-repository-plugin
Version 0.3.3
0.3.3
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.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.moneyforward.gradle:private-repository-plugin:0.3.3")
}
}
apply(plugin = "com.moneyforward.private-repository-plugin")
Using the plugins DSL:
plugins {
id "com.moneyforward.private-repository-plugin" version "0.3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.moneyforward.gradle:private-repository-plugin:0.3.3"
}
}
apply plugin: "com.moneyforward.private-repository-plugin"