org.openntf.maven.Feature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of headlessdesigner-maven-plugin Show documentation
Show all versions of headlessdesigner-maven-plugin Show documentation
The headless designer plugins enables you build XPages Application from the On-Disk-Project, invoking the IBM Domino Designer.
The newest version!
package org.openntf.maven;
import org.apache.maven.plugins.annotations.Parameter;
public class Feature {
@Parameter(property = "ddehd.url", alias = "url", required = true)
private String m_Url;
@Parameter(property = "ddehd.featureId", alias = "featureId", required = true)
private String m_FeatureId;
@Parameter(property = "ddehd.version", alias = "version", required = true)
private String m_Version;
public String getUrl() {
return m_Url;
}
public void setUrl(String uRL) {
m_Url = uRL;
}
public String getFeatureId() {
return m_FeatureId;
}
public void setFeatureId(String featureId) {
m_FeatureId = featureId;
}
public String getVersion() {
return m_Version;
}
public void setVersion(String version) {
m_Version = version;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy