com.visus.infrastructure.vmanifest
Owner: DevExperte
A plugin to allow Gradle projects to configure their Manifest file specially
https://github.com/VISUS-Health-IT-GmbH/ManifestPlugin
Sources: https://github.com/VISUS-Health-IT-GmbH/ManifestPlugin.git
Version 1.0.5 (latest)
1.0.5
Created 14 October 2022.
A plugin to allow Gradle projects to configure their Manifest file specially
Using the plugins DSL:
plugins {
id("com.visus.infrastructure.vmanifest") version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.visus.infrastructure:ManifestPlugin:1.0.5")
}
}
apply(plugin = "com.visus.infrastructure.vmanifest")
Using the plugins DSL:
plugins {
id "com.visus.infrastructure.vmanifest" version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.visus.infrastructure:ManifestPlugin:1.0.5"
}
}
apply plugin: "com.visus.infrastructure.vmanifest"