All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.revapi.maven.ConfigurationFile Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy