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.5.0-RC4

0.5.0-RC4

Created 13 April 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.5.0-RC4"
}

See also:

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