mirror of https://github.com/apache/maven.git
MAVEN-1669: Added support for the ejb-client type.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@239415 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bc77a5ba07
commit
59cfb344a6
|
@ -1313,18 +1313,37 @@
|
||||||
return getJar();
|
return getJar();
|
||||||
}
|
}
|
||||||
|
|
||||||
return getArtifactId() + "-" + getVersion() + "." + getExtension();
|
String artifact;
|
||||||
|
|
||||||
|
if ("ejb-client".equals(getType())) {
|
||||||
|
artifact = getArtifactId() + "-" + getVersion() + "-client." + getExtension();
|
||||||
|
} else {
|
||||||
|
artifact = getArtifactId() + "-" + getVersion() + "." + getExtension();
|
||||||
|
}
|
||||||
|
|
||||||
|
return artifact;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTypeDirectory()
|
||||||
|
{
|
||||||
|
String path;
|
||||||
|
if (getType().equals("ejb-client")) {
|
||||||
|
path = "ejbs";
|
||||||
|
} else {
|
||||||
|
path = getType() + "s";
|
||||||
|
}
|
||||||
|
return path;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getExtension()
|
public String getExtension()
|
||||||
{
|
{
|
||||||
if ("ejb".equals(getType()) || "plugin".equals(getType()) || "aspect".equals(getType()) || "uberjar".equals(getType())) return "jar";
|
if ("ejb".equals(getType()) || "ejb-client".equals(getType()) || "plugin".equals(getType()) || "aspect".equals(getType()) || "uberjar".equals(getType())) return "jar";
|
||||||
return getType();
|
return getType();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isAddedToClasspath()
|
public boolean isAddedToClasspath()
|
||||||
{
|
{
|
||||||
return ("jar".equals(getType()) || "ejb".equals(getType()) || "sar".equals(getType()));
|
return ("jar".equals(getType()) || "ejb".equals(getType()) || "ejb-client".equals(getType()) || "sar".equals(getType()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isPlugin()
|
public boolean isPlugin()
|
||||||
|
|
Loading…
Reference in New Issue