Search Gradle plugins

Version 0.0.10 (latest)

Created 10 July 2023.

Streamlines loading JARs from GitHub Packages repositories

Using the plugins DSL:

plugins {
  id("com.theoremlp.github-packages") version "0.0.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.theoremlp.github.packages:gradle-github-packages-plugin:0.0.10")
  }
}

apply(plugin = "com.theoremlp.github-packages")

Using the plugins DSL:

plugins {
  id "com.theoremlp.github-packages" version "0.0.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.theoremlp.github.packages:gradle-github-packages-plugin:0.0.10"
  }
}

apply plugin: "com.theoremlp.github-packages"

Learn how to apply plugins to subprojects