com.brambolt.gradle.pathing
Owner: Brambolt
A Gradle plug-in for creating pathing jars
https://github.com/brambolt/gradle-pathing
Sources: https://github.com/brambolt/gradle-pathing
Version 2020.11.19-4279
2020.11.19-4279
Created 19 November 2020.
A Gradle plug-in for creating pathing jars
Using the plugins DSL:
plugins {
id("com.brambolt.gradle.pathing") version "2020.11.19-4279"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.brambolt.gradle:brambolt-gradle-pathing:2020.11.19-4279")
}
}
apply(plugin = "com.brambolt.gradle.pathing")
Using the plugins DSL:
plugins {
id "com.brambolt.gradle.pathing" version "2020.11.19-4279"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.brambolt.gradle:brambolt-gradle-pathing:2020.11.19-4279"
}
}
apply plugin: "com.brambolt.gradle.pathing"