Github user radcortez commented on a diff in the pull request:
https://github.com/apache/tomee/pull/269#discussion_r241040758
--- Diff:
maven/tomee-maven-plugin/src/main/java/org/apache/openejb/maven/plugin/AbstractTomEEMojo.java
---
@@ -148,45 +187,87 @@
@Parameter(property = "tomee-plugin.classifier", defaultValue =
"webprofile")
protected String tomeeClassifier;
+ /**
+ * The Tomee shutdown port.
+ */
@Parameter(property = "tomee-plugin.shutdown")
protected String tomeeShutdownPort;
+ /**
+ * The Tomee shutdown attempts.
+ */
@Parameter(property = "tomee-plugin.shutdown.attempts", defaultValue =
"60")
protected int tomeeShutdownAttempts;
+ /**
+ * The Tomee shutdown command.
+ */
@Parameter(property = "tomee-plugin.shutdown-command", defaultValue =
"SHUTDOWN")
protected String tomeeShutdownCommand;
+ /**
+ * The Tomee ajp port.
--- End diff --
Maybe use TomEE here.
---