
org.jboss.maven.plugins.thirdparty.Mapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-buildmagic-thirdparty-plugin
Show all versions of maven-buildmagic-thirdparty-plugin
Plugin for deploying artifacts to JBoss ant/buildmagic repository, and building a thirdparty directory
from dependencies in a maven repository.
The newest version!
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.maven.plugins.thirdparty;
/**
*
* Simple class containing info about
*
* @author Paul Gier
* @version $Revision: 96 $
*/
public class Mapping
{
private String componentId;
private String artifactId;
private String version;
public String getComponentId()
{
return componentId;
}
/**
* Set the componentId for this artifact. This method will replace dots with
* slashes.
*
* @param componentId
*/
public void setComponentId(String componentId)
{
this.componentId = componentId.replace( '.', '/' );
}
public String getArtifactId()
{
return artifactId;
}
public void setArtifactId(String artifactId)
{
this.artifactId = artifactId;
}
public String getVersion()
{
return version;
}
public void setVersion(String version)
{
this.version = version;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy