Search Gradle plugins

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 (latest)

1.3

Created 02 September 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"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.intisy:github-gradle:1.3")
  }
}

apply(plugin = "io.github.intisy.github-gradle")

Using the plugins DSL:

plugins {
  id "io.github.intisy.github-gradle" version "1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.intisy:github-gradle:1.3"
  }
}

apply plugin: "io.github.intisy.github-gradle"

Learn how to apply plugins to subprojects