io.github.bralax.shotput
Owner: Brandon Lax
A plugin for integrating a gradle project with ShotPut
https://github.com/bralax/ShotPut-gradle
Sources: https://github.com/bralax/ShotPut-gradle.git
Version 0.2.2 (latest)
0.2.2
Created 17 June 2021.
A plugin for integrating a gradle project with ShotPut
Using the plugins DSL:
plugins {
id("io.github.bralax.shotput") version "0.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.bralax:shotput-gradle:0.2.2")
}
}
apply(plugin = "io.github.bralax.shotput")
Using the plugins DSL:
plugins {
id "io.github.bralax.shotput" version "0.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.bralax:shotput-gradle:0.2.2"
}
}
apply plugin: "io.github.bralax.shotput"