com.wynprice.cursemaven
Owner: Price
Allow easy access to curseforge files
https://github.com/Wyn-Price/CurseMaven
Sources: https://github.com/Wyn-Price/CurseMaven
Version 2.1.5 (latest)
2.1.5
Created 02 June 2020.
Allow easy access to curseforge files
Using the plugins DSL:
plugins {
id("com.wynprice.cursemaven") version "2.1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.wynprice.cursemaven:CurseMaven:2.1.5")
}
}
apply(plugin = "com.wynprice.cursemaven")
Using the plugins DSL:
plugins {
id "com.wynprice.cursemaven" version "2.1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.wynprice.cursemaven:CurseMaven:2.1.5"
}
}
apply plugin: "com.wynprice.cursemaven"