ro.kuberam.maven.plugins.expath.ExpathDependencySet 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;
/**
* A dependencySet allows inclusion and exclusion of project dependencies in the
* assembly.
*
* @version $Revision$ $Date$
*/
public class ExpathDependencySet {
private final String groupId;
private final String artifactId;
private final String version;
private final String outputDirectory;
private final String outputFileNameMapping;
public ExpathDependencySet(final String groupId, final String artifactId, final String version, final String outputDirectory, final String outputFileNameMapping) {
this.groupId = groupId;
this.artifactId = artifactId;
this.version = version;
this.outputDirectory = outputDirectory;
this.outputFileNameMapping = outputFileNameMapping;
}
@Override
public String toString() {
return groupId + ":" + artifactId + ":" + version + " " + outputDirectory;
}
public String getGroupId() {
return groupId;
}
public String getArtifactId() {
return artifactId;
}
public String getVersion() {
return version;
}
public String getOutputDirectory() {
return outputDirectory;
}
public String getOutputFileNameMapping() {
return outputFileNameMapping;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy