Search Gradle plugins

ca.stellardrift.repository

Owner: zml

Register the stellardrift repository as an extension available to projects

https://github.com/zml2008/gradle-plugins

Sources: https://github.com/zml2008/gradle-plugins

Version 6.0.1

Created 08 October 2022.

Register the stellardrift repository as an extension available to projects

Using the plugins DSL:

plugins {
  id("ca.stellardrift.repository") version "6.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ca.stellardrift:gradle-plugin-stellardrift-repository:6.0.1")
  }
}

apply(plugin = "ca.stellardrift.repository")

Using the plugins DSL:

plugins {
  id "ca.stellardrift.repository" version "6.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ca.stellardrift:gradle-plugin-stellardrift-repository:6.0.1"
  }
}

apply plugin: "ca.stellardrift.repository"

Learn how to apply plugins to subprojects