org.revapi.maven.ConfigurationFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of revapi-maven-plugin Show documentation
Show all versions of revapi-maven-plugin Show documentation
Maven integration for Revapi.
package org.revapi.maven;
/**
* A complex type for capturing the "analysisConfigurationFiles" elements.
*
* @author Lukas Krejci
* @since 0.2.0
*/
public final class ConfigurationFile {
private String path;
private String[] roots;
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String[] getRoots() {
return roots;
}
public void setRoots(String[] roots) {
this.roots = roots;
}
}