ro.kuberam.maven.plugins.expath.ExpathFileSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kuberam-expath-plugin Show documentation
Show all versions of kuberam-expath-plugin Show documentation
Plugin for EXPath related functionality
package ro.kuberam.maven.plugins.expath;
public class ExpathFileSet extends org.codehaus.plexus.archiver.util.DefaultFileSet {
public String[] includes;
public String[] excludes;
@Override
public String[] getIncludes() {
return includes;
}
@Override
public String[] getExcludes() {
return excludes;
}
public void setIncludes(String includesString) {
includes = includesString.split(",");
}
public void setExcludes(String excludesString) {
excludes = excludesString.split(",");
}
}