com.xenoterracide.gradle.convention.publish
Owner: Caleb Cushing
makes it easy to add repository wide spdx licenses
https://github.com/xenoterracide/gradle-convention
Sources: https://github.com/xenoterracide/gradle-convention.git
Version 0.1.10
0.1.10
Created 18 October 2024.
makes it easy to add repository wide spdx licenses
Using the plugins DSL:
plugins {
id("com.xenoterracide.gradle.convention.publish") version "0.1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.xenoterracide.gradle.convention:publish:0.1.10")
}
}
apply(plugin = "com.xenoterracide.gradle.convention.publish")
Using the plugins DSL:
plugins {
id "com.xenoterracide.gradle.convention.publish" version "0.1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.xenoterracide.gradle.convention:publish:0.1.10"
}
}
apply plugin: "com.xenoterracide.gradle.convention.publish"