com.elo.flows
Owner:
ELO Digital Office GmbH
Plugin to create a elo-flows component, used by elo partners to create a osgi based elo-flows component
https://www.elo.com/en-de.html
Sources: https://git.elo.com/development/flows-gradle-plugin
Version 1.2.16 (latest)
Created 04 February 2025.
Plugin to create a elo-flows component, used by elo partners to create a osgi based elo-flows component
Add this plugin to your build using the plugins DSL:
plugins {
id("com.elo.flows") version "1.2.16"
}
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("com.elo.flows:com.elo.flows.gradle.plugin:1.2.16") }
It can then be applied in the precompiled script plugin:plugins { id("com.elo.flows") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.elo.flows:com.elo.flows.gradle.plugin:1.2.16") } } apply(plugin = "com.elo.flows")
- Applying plugins to all subprojects .