se.bynk.baseline
Owner: William Rudenmalm
Baseline gradle configuration for working with our projects
https://github.com/williamhogman/gradle-scala-microservicess
Sources: https://github.com/williamhogman/gradle-scala-microservices
Version 0.1-RC2 (latest)
Created 01 October 2019.
Baseline gradle configuration for working with our projects
Add this plugin to your build using the plugins DSL:
plugins {
id("se.bynk.baseline") version "0.1-RC2"
}
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("se.bynk.baseline:se.bynk.baseline.gradle.plugin:0.1-RC2") }
It can then be applied in the precompiled script plugin:plugins { id("se.bynk.baseline") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("se.bynk.baseline:se.bynk.baseline.gradle.plugin:0.1-RC2") } } apply(plugin = "se.bynk.baseline")
- Applying plugins to all subprojects .