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