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.2

Created 28 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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.curioswitch.curiostack:gradle-curiostack-plugin:0.5.2")
  }
}

apply(plugin = "org.curioswitch.gradle-curiostack-plugin")

Using the plugins DSL:

plugins {
  id "org.curioswitch.gradle-curiostack-plugin" version "0.5.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.curioswitch.curiostack:gradle-curiostack-plugin:0.5.2"
  }
}

apply plugin: "org.curioswitch.gradle-curiostack-plugin"

Learn how to apply plugins to subprojects