elect86.buildSrc-catalog
Owner: Giuseppe Barbieri
it generates automatically a catalog-like for the buildSrc scripts
https://github.com/elect86/buildSrc-catalog
Sources: https://github.com/elect86/buildSrc-catalog.git
Version 0.0.01 (latest)
0.0.01
Created 24 September 2024.
it generates automatically a catalog-like for the buildSrc scripts
Using the plugins DSL:
plugins {
id("elect86.buildSrc-catalog") version "0.0.01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("elect86.buildSrc-catalog:buildSrc-catalog:0.0.01")
}
}
apply(plugin = "elect86.buildSrc-catalog")
Using the plugins DSL:
plugins {
id "elect86.buildSrc-catalog" version "0.0.01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "elect86.buildSrc-catalog:buildSrc-catalog:0.0.01"
}
}
apply plugin: "elect86.buildSrc-catalog"