Search Gradle plugins

Version 0.1.1

0.1.1

Created 03 October 2024.

Configures common build settings for projects using Refinery

Add this plugin to your build using the plugins DSL:

plugins {
  id("tools.refinery.settings") version "0.1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("tools.refinery:refinery-gradle-plugins:0.1.1")
      }
    }
    
    apply(plugin = "tools.refinery.settings")
  • Applying plugins to all subprojects .