com.github.dispader.manifesto
Owner: Jake Gage
JAr and War manifests made less painful.
https://github.com/Dispader/manifesto
Sources: https://github.com/Dispader/manifesto
Version 2.0.0 (latest)
2.0.0
Created 21 October 2019.
JAr and WAr manifests made less painful.
Using the plugins DSL:
plugins {
id("com.github.dispader.manifesto") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.dispader.manifesto:manifesto:2.0.0")
}
}
apply(plugin = "com.github.dispader.manifesto")
Using the plugins DSL:
plugins {
id "com.github.dispader.manifesto" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.dispader.manifesto:manifesto:2.0.0"
}
}
apply plugin: "com.github.dispader.manifesto"