com.banderous.gpm
Owner:
Alex McAusland
A Unity package manager
https://banderous.github.io/gpm
Sources: https://github.com/banderous/gpm
Using the plugins DSL:
plugins {
id("com.banderous.gpm") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.banderous.gpm:plugin:0.1")
}
}
apply(plugin = "com.banderous.gpm")
Using the plugins DSL:
plugins {
id "com.banderous.gpm" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.banderous.gpm:plugin:0.1"
}
}
apply plugin: "com.banderous.gpm"