org.wso2.maven.car.artifact.CARMavenArtifact Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-car-deploy-plugin Show documentation
Show all versions of maven-car-deploy-plugin Show documentation
Maven plugin which deploys the generated CAR artifacts to remote/local Carbon Servers.
The newest version!
package org.wso2.maven.car.artifact;
public class CARMavenArtifact {
/**
* group id of the CAR artifact
*
* @required
* @parameter
*/
private String groupId;
/**
* artifact id of the CAR artifact
*
* @required
* @parameter
*/
private String artifactId;
/**
* version of the CAR artifact
*
* @required
* @parameter
*/
private String version;
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getGroupId() {
return groupId;
}
public void setArtifactId(String artifactId) {
this.artifactId = artifactId;
}
public String getArtifactId() {
return artifactId;
}
public void setVersion(String version) {
this.version = version;
}
public String getVersion() {
return version;
}
}