dev.sparky200.necesse-build-dsl
Owner: Sparky
DSL and provided tasks for Necesse Mods
Sources: https://github.com/Sparky200/NecesseBuildDsl
Version 1.1.3 (latest)
1.1.3
Created 05 October 2022.
DSL and provided tasks for Necesse Mods
Using the plugins DSL:
plugins {
id("dev.sparky200.necesse-build-dsl") version "1.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.sparky200:necesse-build-dsl:1.1.3")
}
}
apply(plugin = "dev.sparky200.necesse-build-dsl")
Using the plugins DSL:
plugins {
id "dev.sparky200.necesse-build-dsl" version "1.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.sparky200:necesse-build-dsl:1.1.3"
}
}
apply plugin: "dev.sparky200.necesse-build-dsl"