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.1.0 (latest)

Created 09 September 2023.

Register the stellardrift repository as an extension available to projects

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "ca.stellardrift.repository"

Learn how to apply plugins to subprojects