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.1.6

1.1.6

Created 24 August 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.1.6"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects