dev.mythicdrops.gradle.project.root
Owner: Richard Harrah
Common conventions for MythicDrops root Gradle projects.
https://github.com/MythicDrops/mythicdrops-gradle-plugin
Sources: https://github.com/MythicDrops/mythicdrops-gradle-plugin
Version 2.2.5
2.2.5
Created 21 February 2022.
Common conventions for MythicDrops root Gradle projects.
Using the plugins DSL:
plugins {
id("dev.mythicdrops.gradle.project.root") version "2.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.mythicdrops:mythicdrops-gradle-plugin:2.2.5")
}
}
apply(plugin = "dev.mythicdrops.gradle.project.root")
Using the plugins DSL:
plugins {
id "dev.mythicdrops.gradle.project.root" version "2.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.mythicdrops:mythicdrops-gradle-plugin:2.2.5"
}
}
apply plugin: "dev.mythicdrops.gradle.project.root"