You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gradle-plugins/gradle-plugin-shadow/src/main/groovy/org/xbib/gradle/plugin/shadow/tasks/InheritManifest.groovy

11 lines
266 B
Groovy

package org.xbib.gradle.plugin.shadow.tasks
import org.gradle.api.java.archives.Manifest
interface InheritManifest extends Manifest {
InheritManifest inheritFrom(Object... inheritPaths)
InheritManifest inheritFrom(Object inheritPaths, Closure closure)
}