Search Gradle plugins

no.ghpkg

Quickly with common format add github package repositories

https://github.com/testersen/no.ghpkg

Sources: https://github.com/testersen/no.ghpkg

Version 0.3.3 (latest)

Created 22 October 2023.

Quickly with common format add github package repositories

Using the plugins DSL:

plugins {
  id("no.ghpkg") version "0.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("no.ghpkg:ghpkg:0.3.3")
  }
}

apply(plugin = "no.ghpkg")

Using the plugins DSL:

plugins {
  id "no.ghpkg" version "0.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "no.ghpkg:ghpkg:0.3.3"
  }
}

apply plugin: "no.ghpkg"

Learn how to apply plugins to subprojects