Search Gradle plugins

com.elo.flows

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.11 (latest)

Created 14 March 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.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.elo.gradle:flows-gradle-plugin:1.2.11")
  }
}

apply(plugin = "com.elo.flows")

Using the plugins DSL:

plugins {
  id "com.elo.flows" version "1.2.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.elo.gradle:flows-gradle-plugin:1.2.11"
  }
}

apply plugin: "com.elo.flows"

Learn how to apply plugins to subprojects