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.15 (latest)

Created 01 October 2023.

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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("info.offthecob:plugins:1.0.15")
  }
}

apply(plugin = "info.offthecob.SpringService")

Using the plugins DSL:

plugins {
  id "info.offthecob.SpringService" version "1.0.15"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "info.offthecob:plugins:1.0.15"
  }
}

apply plugin: "info.offthecob.SpringService"

Learn how to apply plugins to subprojects