com.netflix.gradle.plugins.packaging.Directory.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-ospackage-plugin Show documentation
Show all versions of gradle-ospackage-plugin Show documentation
Provides a task similar to Tar and Zip for constructing RPM and DEB package files.
package com.netflix.gradle.plugins.packaging
import groovy.transform.EqualsAndHashCode
@EqualsAndHashCode
class Directory implements Serializable {
String path
int permissions = -1
String user = null
String permissionGroup = null
boolean addParents = false
}