io.github.qudtlib.maven.rdfio.IncludeExcludePatterns Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdfio-maven-plugin Show documentation
Show all versions of rdfio-maven-plugin Show documentation
Maven plugin for RDF file manipulation
package io.github.qudtlib.maven.rdfio;
import org.apache.maven.plugins.annotations.Parameter;
public class IncludeExcludePatterns {
/**
* Comma-separated list of ant-style patterns, such as
* target/txt/**\/*.txt,target/pdf/**\/*.pdf
*/
@Parameter private String include;
/**
* Comma-separated list of ant-style patterns, such as
* target/txt/**\/*.txt,target/pdf/**\/*.pdf
*/
@Parameter private String exclude;
public String getInclude() {
return include == null ? "" : include;
}
public String getExclude() {
return exclude == null ? "" : exclude;
}
@Override
public String toString() {
return "IncludeExcludePatterns{"
+ "include='"
+ include
+ '\''
+ ", exclude='"
+ exclude
+ '\''
+ '}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy