hudson.maven.ModuleDependency Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-plugin Show documentation
Show all versions of maven-plugin Show documentation
This plug-in provides deep integration of Hudson and Maven. This functionality used to be part of the Hudson core.
Now it is a plug-in that is installed by default, but can be disabled.
/*
* The MIT License
*
* Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Olivier Lamy
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package hudson.maven;
import org.apache.maven.project.MavenProject;
import org.apache.maven.model.Plugin;
import org.apache.maven.model.ReportPlugin;
import org.apache.maven.model.Extension;
import java.io.Serializable;
import hudson.Functions;
/**
* group id + artifact id + version and a flag to know if it's a plugin
*
* @author Kohsuke Kawaguchi
* @see ModuleName
*/
public final class ModuleDependency implements Serializable {
public final String groupId;
public final String artifactId;
public final String version;
/**
* @since 1.395
*/
public boolean plugin = false;
public ModuleDependency(String groupId, String artifactId, String version) {
this.groupId = groupId.intern();
this.artifactId = artifactId.intern();
if(version==null) version=UNKNOWN;
this.version = version.intern();
}
public ModuleDependency(ModuleName name, String version) {
this(name.groupId,name.artifactId,version);
}
public ModuleDependency(org.apache.maven.model.Dependency dep) {
this(dep.getGroupId(),dep.getArtifactId(),dep.getVersion());
}
public ModuleDependency(MavenProject project) {
this(project.getGroupId(),project.getArtifactId(),project.getVersion());
}
public ModuleDependency(Plugin p) {
this(p.getGroupId(),p.getArtifactId(), Functions.defaulted(p.getVersion(),NONE));
this.plugin = true;
}
public ModuleDependency(ReportPlugin p) {
this(p.getGroupId(),p.getArtifactId(),p.getVersion());
this.plugin = true;
}
public ModuleDependency(Extension ext) {
this(ext.getGroupId(),ext.getArtifactId(),ext.getVersion());
}
public ModuleName getName() {
return new ModuleName(groupId,artifactId);
}
/**
* Returns groupId+artifactId plus unknown version.
*/
public ModuleDependency withUnknownVersion() {
return new ModuleDependency(groupId,artifactId,UNKNOWN);
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ModuleDependency that = (ModuleDependency) o;
return this.artifactId.equals(that.artifactId)
&& this.groupId.equals(that.groupId)
&& this.version.equals(that.version)
&& this.plugin == that.plugin;
}
public int hashCode() {
int result;
result = groupId.hashCode();
result = 31 * result + artifactId.hashCode();
result = 31 * result + version.hashCode();
result = 31 * result + (plugin ? 1 : 2);
return result;
}
/**
* Upon reading from the disk, intern strings.
*/
public ModuleDependency readResolve() {
return new ModuleDependency(groupId,artifactId,version);
}
/**
* For compatibility reason, this value may be used in the verion field
* to indicate that the version is unknown.
*/
public static final String UNKNOWN = "*";
/**
* When a plugin dependency is specified without giving a version,
* the semantics of that is the latest released plugin.
* In this case, we don't want the {@link ModuleDependency} version to become
* {@link #UNKNOWN}, which would match any builds of the plugin.
*
*
* So we use this constant to indicate a version, and this will not match
* anything.
*
* @see #ModuleDependency(Plugin)
*/
public static final String NONE = "-";
private static final long serialVersionUID = 1L;
}