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