Search Gradle plugins

info.offthecob.SpringService

Owner: whodevil

This plugin contains all the work from `info.offthecob.Service` but includes customization of the dependency management plugin used by spring, and applies the `kotlin-spring` and `spring-boot` plugins.

https://github.com/whodevil/offthecob-platform

Sources: https://github.com/whodevil/jvm-platform.git

Version 1.0.17 (latest)

Created 11 July 2024.

This plugin contains all the work from 'info.offthecob.Service' but includes customization of the 'dependency-management' plugin used by spring, and applies the 'kotlin-spring' and 'spring-boot' plugins.

Add this plugin to your build using the plugins DSL:

plugins {
  id("info.offthecob.SpringService") version "1.0.17"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("info.offthecob.SpringService:info.offthecob.SpringService.gradle.plugin:1.0.17")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("info.offthecob.SpringService")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("info.offthecob.SpringService:info.offthecob.SpringService.gradle.plugin:1.0.17")
      }
    }
    
    apply(plugin = "info.offthecob.SpringService")
  • Applying plugins to all subprojects .