dev.mythicdrops.gradle.convention.maven-publish
Owner: Richard Harrah
Common conventions for all MythicDrops Maven Publishing Gradle projects.
https://github.com/MythicDrops/mythicdrops-gradle-plugin
Sources: https://github.com/MythicDrops/mythicdrops-gradle-plugin
Version 9.0.0 (latest)
9.0.0
Created 05 July 2024.
Common conventions for all MythicDrops Maven Publishing Gradle projects.
Using the plugins DSL:
plugins {
id("dev.mythicdrops.gradle.convention.maven-publish") version "9.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.mythicdrops:mythicdrops-gradle-plugin:9.0.0")
}
}
apply(plugin = "dev.mythicdrops.gradle.convention.maven-publish")
Using the plugins DSL:
plugins {
id "dev.mythicdrops.gradle.convention.maven-publish" version "9.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.mythicdrops:mythicdrops-gradle-plugin:9.0.0"
}
}
apply plugin: "dev.mythicdrops.gradle.convention.maven-publish"