Search Gradle plugins

com.github.rico.ro-app

Rico plugin manages auto configuration of dependencies for spring boot application

https://github.com/krishnakumar797/ro-app/wiki

Sources: https://github.com/krishnakumar797/ro-app

Version 3.11

Created 06 October 2021.

Rico plugin manages auto configuration of dependencies for spring boot application

Using the plugins DSL:

plugins {
  id("com.github.rico.ro-app") version "3.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.rico:ro-app:3.11")
  }
}

apply(plugin = "com.github.rico.ro-app")

Using the plugins DSL:

plugins {
  id "com.github.rico.ro-app" version "3.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.rico:ro-app:3.11"
  }
}

apply plugin: "com.github.rico.ro-app"

Learn how to apply plugins to subprojects