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)
1.0.17
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.
Using the plugins DSL:
plugins {
id("info.offthecob.SpringService") version "1.0.17"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("info.offthecob:plugins:1.0.17")
}
}
apply(plugin = "info.offthecob.SpringService")
Using the plugins DSL:
plugins {
id "info.offthecob.SpringService" version "1.0.17"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "info.offthecob:plugins:1.0.17"
}
}
apply plugin: "info.offthecob.SpringService"