dev.mythicdrops.gradle.project
Owner: Richard Harrah
Orchestration plugin for all MythicDrops Gradle projects.
https://github.com/MythicDrops/mythicdrops-gradle-plugin
Sources: https://github.com/MythicDrops/mythicdrops-gradle-plugin
Version 5.4.1
5.4.1
Created 24 August 2023.
Orchestration plugin for all MythicDrops Gradle projects.
Using the plugins DSL:
plugins {
id("dev.mythicdrops.gradle.project") version "5.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.mythicdrops:mythicdrops-gradle-plugin:5.4.1")
}
}
apply(plugin = "dev.mythicdrops.gradle.project")
Using the plugins DSL:
plugins {
id "dev.mythicdrops.gradle.project" version "5.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.mythicdrops:mythicdrops-gradle-plugin:5.4.1"
}
}
apply plugin: "dev.mythicdrops.gradle.project"