com.runemate
Owner: RuneMate
Configures your Gradle project for use with RuneMate
Sources: https://gitlab.com/runemate/community/runemate-gradle-plugin.git
Version 1.5.0 (latest)
1.5.0
Created 18 October 2024.
Configures your Gradle project for use with RuneMate
Using the plugins DSL:
plugins {
id("com.runemate") version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.runemate:runemate-gradle-plugin:1.5.0")
}
}
apply(plugin = "com.runemate")
Using the plugins DSL:
plugins {
id "com.runemate" version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.runemate:runemate-gradle-plugin:1.5.0"
}
}
apply plugin: "com.runemate"