
com.google.sitebricks.cloud.mix.MavenDependency Maven / Gradle / Ivy
The newest version!
package com.google.sitebricks.cloud.mix;
/**
* @author [email protected] (Dhanji R. Prasanna)
*/
public class MavenDependency {
protected String group;
protected String artifact;
protected String version;
private String classifier;
private String scope;
private String type = "dep";
public MavenDependency(String group, String artifact, String version) {
this.group = group;
this.artifact = artifact;
this.version = version;
}
public MavenDependency(String group, String artifact, String version, String classifier,
String scope) {
this.group = group;
this.artifact = artifact;
this.version = version;
this.classifier = classifier;
this.scope = scope;
}
void setType(String type) {
this.type = type;
}
public String getType() {
return type;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
MavenDependency that = (MavenDependency) o;
if (!artifact.equals(that.artifact)) return false;
if (!group.equals(that.group)) return false;
return true;
}
@Override
public int hashCode() {
int result = group == null ? 0 : group.hashCode();
result = 31 * result + (artifact == null ? 0 : artifact.hashCode());
return result;
}
@Override
public String toString() {
return group + ":" + artifact + ":" + version
+ (classifier != null ? "(" + classifier + ")" : "")
+ (scope != null ? " => " + scope : "");
}
public String toDepString() {
return " \n"
+ " " + group + " \n"
+ " " + artifact + " \n"
+ " " + version + " \n"
+ (classifier != null ? " " + classifier + " \n" : "")
+ (scope != null ? " " + scope + " \n" : "")
+ " \n";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy