https://github.com/intisy/github-gradle
GitHub Gradle implements a way to get dependencies from a GitHub asset, so you don't need services like jitpack anymore
https://github.com/intisy/github-gradle
github github-assets gradle gradle-java gradle-plugin java java-8 jitpack
Last synced: 4 days ago
JSON representation
GitHub Gradle implements a way to get dependencies from a GitHub asset, so you don't need services like jitpack anymore
- Host: GitHub
- URL: https://github.com/intisy/github-gradle
- Owner: intisy
- License: apache-2.0
- Created: 2024-08-13T15:58:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-27T17:22:44.000Z (5 days ago)
- Last Synced: 2026-01-28T03:12:42.711Z (4 days ago)
- Topics: github, github-assets, gradle, gradle-java, gradle-plugin, java, java-8, jitpack
- Language: Java
- Homepage:
- Size: 251 KB
- Stars: 86
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Github Gradle
Archives containing JAR files are available as [releases](https://github.com/intisy/github-gradle/releases).
## What is github-gradle?
GitHub Gradle implements a way to get dependencies from a GitHub asset, so you don't need services like jitpack anymore
## Usage
Using the plugins DSL:
```groovy
plugins {
id "io.github.intisy.github-gradle" version "1.7.2.2"
}
```
Using legacy plugin application:
```groovy
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.intisy.github-gradle:1.7.2.2"
}
}
apply plugin: "io.github.intisy.github-gradle"
```
Once you have the plugin installed you can use it like so:
```groovy
dependencies {
githubImplementation "USERNAME:REPOSITORY:TAG"
}
```
## License
[](LICENSE)