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.14 (latest)
1.2.14
Created 12 August 2024.
Plugin to create a elo-flows component, used by elo partners to create a osgi based elo-flows component
Using the plugins DSL:
plugins {
id("com.elo.flows") version "1.2.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.elo.gradle:flows-gradle-plugin:1.2.14")
}
}
apply(plugin = "com.elo.flows")
Using the plugins DSL:
plugins {
id "com.elo.flows" version "1.2.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.elo.gradle:flows-gradle-plugin:1.2.14"
}
}
apply plugin: "com.elo.flows"