io.github.peppshabender.r4j
Owner: PeppsHabender
Plugin for automatically creating resource holders.
https://github.com/PeppsHabender/r4j
Sources: https://github.com/PeppsHabender/r4j.git
Version 0.0.2 (latest)
0.0.2
Created 09 December 2023.
Plugin for automatically creating resource holders.
Using the plugins DSL:
plugins {
id("io.github.peppshabender.r4j") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.peppshabender.r4j:r4j-gradle-plugin:0.0.2")
}
}
apply(plugin = "io.github.peppshabender.r4j")
Using the plugins DSL:
plugins {
id "io.github.peppshabender.r4j" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.peppshabender.r4j:r4j-gradle-plugin:0.0.2"
}
}
apply plugin: "io.github.peppshabender.r4j"