codes.draeger.jumpstart
Owner: Christian Dräger
A gradle convention plugin to jumpstart spring-boot based projects written in kotlin by cutting down project configuration boilerplate for opinionated projects.
http://jumpstart.draeger.codes
Sources: https://github.com/christian-draeger/project-jumpstart
Version 0.1.0-alpha.1 (latest)
0.1.0-alpha.1
Created 04 March 2022.
A gradle convention plugin to jumpstart spring-boot based projects written in kotlin by cutting down project configuration boilerplate for opinionated projects.
Using the plugins DSL:
plugins {
id("codes.draeger.jumpstart") version "0.1.0-alpha.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("codes.draeger.jumpstart:codes.draeger.jumpstart:0.1.0-alpha.1")
}
}
apply(plugin = "codes.draeger.jumpstart")
Using the plugins DSL:
plugins {
id "codes.draeger.jumpstart" version "0.1.0-alpha.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "codes.draeger.jumpstart:codes.draeger.jumpstart:0.1.0-alpha.1"
}
}
apply plugin: "codes.draeger.jumpstart"