Github user radcortez commented on a diff in the pull request:
https://github.com/apache/tomee/pull/269#discussion_r241039906
--- Diff:
maven/tomee-maven-plugin/src/main/java/org/apache/openejb/maven/plugin/AbstractAddressMojo.java
---
@@ -20,22 +20,43 @@
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugins.annotations.Parameter;
+/**
+ * The type AbstractAddressMojo.
+ */
public abstract class AbstractAddressMojo extends AbstractMojo {
+ /**
+ * The Tomee http port.
+ */
@Parameter(property = "tomee-plugin.http")
protected String tomeeHttpPort;
+ /**
+ * The Tomee https port.
+ */
@Parameter(property = "tomee-plugin.https")
protected String tomeeHttpsPort;
+ /**
+ * The Tomee host.
--- End diff --
Maybe use TomEE here.
---