dev.mythicdrops.gradle.convention.kotlin.jvm
Owner: Richard Harrah
Common conventions for all MythicDrops Kotlin JVM Gradle projects.
https://github.com/MythicDrops/mythicdrops-gradle-plugin
Sources: https://github.com/MythicDrops/mythicdrops-gradle-plugin
Version 3.3.3
3.3.3
Created 19 February 2023.
Common conventions for all MythicDrops Kotlin JVM Gradle projects.
Using the plugins DSL:
plugins {
id("dev.mythicdrops.gradle.convention.kotlin.jvm") version "3.3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.mythicdrops:mythicdrops-gradle-plugin:3.3.3")
}
}
apply(plugin = "dev.mythicdrops.gradle.convention.kotlin.jvm")
Using the plugins DSL:
plugins {
id "dev.mythicdrops.gradle.convention.kotlin.jvm" version "3.3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.mythicdrops:mythicdrops-gradle-plugin:3.3.3"
}
}
apply plugin: "dev.mythicdrops.gradle.convention.kotlin.jvm"