Github user dalexandrov commented on a diff in the pull request:
https://github.com/apache/tomee/pull/269#discussion_r241041631
--- Diff:
maven/tomee-maven-plugin/src/main/java/org/apache/openejb/maven/plugin/AbstractTomEEMojo.java
---
@@ -1439,14 +1662,29 @@ protected void serverCmd(final RemoteServer server,
final List<String> strings)
}
}
+ /**
+ * Add shutdown hooks.
+ *
+ * @param server the server
+ */
protected void addShutdownHooks(final RemoteServer server) {
// no-op
}
+ /**
+ * Gets connect attempts.
+ *
+ * @return the connect attempts
+ */
protected int getConnectAttempts() {
return (tomeeShutdownAttempts == 0 ? 60 : tomeeShutdownAttempts);
}
+ /**
+ * Gets wait tom ee.
+ *
+ * @return the wait tom ee
--- End diff --
My bad! Definitely TomEE!
---