tools.refinery.settings
Owner: The Refinery Authors
Configures common build settings for projects using Refinery
Sources: https://github.com/graphs4value/refinery
Version 0.1.2
0.1.2
Created 20 October 2024.
Configures common build settings for projects using Refinery
Using the plugins DSL:
plugins {
id("tools.refinery.settings") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("tools.refinery:refinery-gradle-plugins:0.1.2")
}
}
apply(plugin = "tools.refinery.settings")
Using the plugins DSL:
plugins {
id "tools.refinery.settings" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "tools.refinery:refinery-gradle-plugins:0.1.2"
}
}
apply plugin: "tools.refinery.settings"