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 3.3.2
3.3.2
Created 19 February 2023.
Orchestration plugin for all MythicDrops Gradle projects.
Using the plugins DSL:
plugins {
id("dev.mythicdrops.gradle.project") version "3.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.mythicdrops:mythicdrops-gradle-plugin:3.3.2")
}
}
apply(plugin = "dev.mythicdrops.gradle.project")
Using the plugins DSL:
plugins {
id "dev.mythicdrops.gradle.project" version "3.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.mythicdrops:mythicdrops-gradle-plugin:3.3.2"
}
}
apply plugin: "dev.mythicdrops.gradle.project"