io.github.intisy.github-gradle
Owner: Intisy
github-gradle implements an way to get dependencies from an the github assets, so you don't need services like jitpack anymore
https://github.com/intisy/github-gradle
Sources: https://github.com/intisy/github-gradle
Version 1.3.7 (latest)
1.3.7
Created 08 November 2024.
Implements a way to get dependencies from a GitHub asset, so you don't need services like jitpack anymore
Using the plugins DSL:
plugins {
id("io.github.intisy.github-gradle") version "1.3.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.intisy:github-gradle:1.3.7")
}
}
apply(plugin = "io.github.intisy.github-gradle")
Using the plugins DSL:
plugins {
id "io.github.intisy.github-gradle" version "1.3.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.intisy:github-gradle:1.3.7"
}
}
apply plugin: "io.github.intisy.github-gradle"