Search Gradle plugins

org.curioswitch.gradle-curiostack-plugin

Owner: Choko

A highly opinionated plugin for setting up a gradle codebase using Curiostack conventions. Defines shared configuration and applies other useful plugins in an aim to be the only plugin in a root project.

https://github.com/curioswitch/curiostack/tree/master/tools/gradle-plugins/gradle-curiostack-plugin

Sources: https://github.com/curioswitch/curiostack.git

Version 0.4.2

0.4.2

Created 22 February 2020.

A highly opinionated plugin for setting up a gradle codebase using Curiostack conventions. Defines shared configuration and applies other useful plugins in an aim to be the only plugin in a root project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.curioswitch.gradle-curiostack-plugin") version "0.4.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.curioswitch.curiostack:gradle-curiostack-plugin:0.4.2")
      }
    }
    
    apply(plugin = "org.curioswitch.gradle-curiostack-plugin")
  • Applying plugins to all subprojects .