com.elo.osgi.manifest
Owner: ELO Digital Office GmbH
Plugin to create a elo based "MANIFEST.mf"
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 based "MANIFEST.mf"
Using the plugins DSL:
plugins {
id("com.elo.osgi.manifest") 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.osgi.manifest")
Using the plugins DSL:
plugins {
id "com.elo.osgi.manifest" 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.osgi.manifest"