All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wso2.maven.car.artifact.CARMavenArtifact Maven / Gradle / Ivy

Go to download

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy