net.bytebuddy.build.maven.MavenCoordinate Maven / Gradle / Ivy
/*
* Copyright 2014 - Present Rafael Winterhalter
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.bytebuddy.build.maven;
import net.bytebuddy.utility.nullability.MaybeNull;
import org.eclipse.aether.artifact.Artifact;
import org.eclipse.aether.artifact.DefaultArtifact;
/**
* A Maven coordinate.
*/
public class MavenCoordinate {
/**
* The project's group id.
*/
private final String groupId;
/**
* The project's artifact id.
*/
private final String artifactId;
/**
* The project's version.
*/
private final String version;
/**
* The projects packaging.
*/
private final String packaging;
/**
* Creates a new Maven coordinate.
*
* @param groupId The project's group id.
* @param artifactId The project's artifact id.
* @param version The project's version.
* @param packaging The project's packaging
*/
protected MavenCoordinate(String groupId, String artifactId, String version, String packaging) {
this.groupId = groupId;
this.artifactId = artifactId;
this.version = version;
this.packaging = packaging;
}
/**
* Returns this coordinate as a jar-file {@link Artifact}.
*
* @return An artifact representation of this coordinate.
*/
public Artifact asArtifact() {
return new DefaultArtifact(groupId, artifactId, packaging, version);
}
@Override
public boolean equals(@MaybeNull Object object) {
if (this == object) {
return true;
}
if (!(object instanceof MavenCoordinate)) {
return false;
}
MavenCoordinate that = (MavenCoordinate) object;
return groupId.equals(that.groupId)
&& artifactId.equals(that.artifactId)
&& version.equals(that.version)
&& packaging.equals(that.packaging);
}
@Override
public int hashCode() {
int result = groupId.hashCode();
result = 31 * result + artifactId.hashCode();
result = 31 * result + version.hashCode();
result = 31 * result + packaging.hashCode();
return result;
}
@Override
public String toString() {
return "MavenCoordinate{" +
"groupId='" + groupId + '\'' +
", artifactId='" + artifactId + '\'' +
", version='" + version + '\'' +
", packaging='" + packaging + '\'' +
'}';
}
}