com.elo.packages.eloinst
Owner: ELO Digital Office GmbH
Plugin to handle elo business solution packages of the first generation"
https://www.elo.com/en-de.html
Sources: https://git.elo.com/business-solutions/eloinst-gradle
Version 1.0.2 (latest)
1.0.2
Created 15 March 2024.
Plugin to handle elo business solution packages of the first generation"
Using the plugins DSL:
plugins {
id("com.elo.packages.eloinst") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.elo.solutions:eloinst-gradle-plugin:1.0.2")
}
}
apply(plugin = "com.elo.packages.eloinst")
Using the plugins DSL:
plugins {
id "com.elo.packages.eloinst" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.elo.solutions:eloinst-gradle-plugin:1.0.2"
}
}
apply plugin: "com.elo.packages.eloinst"