Github user radcortez commented on a diff in the pull request:
https://github.com/apache/tomee/pull/269#discussion_r241041043
--- Diff:
maven/tomee-maven-plugin/src/main/java/org/apache/openejb/maven/plugin/AbstractTomEEMojo.java
---
@@ -283,57 +400,111 @@
@Parameter
protected List<String> libs;
+ /**
+ * The Endorsed libs.
+ */
@Parameter
protected List<String> endorsedLibs;
+ /**
+ * The Javaagents.
+ */
@Parameter
protected List<String> javaagents;
+ /**
+ * The Persist javaagents.
+ */
@Parameter(property = "tomee-plugin.persist-javaagents", defaultValue
= "false")
protected boolean persistJavaagents;
+ /**
+ * The Webapps.
+ */
@Parameter
protected List<String> webapps;
+ /**
+ * The Apps.
+ */
@Parameter
protected List<String> apps;
+ /**
+ * The Classes.
+ */
@Parameter(property = "tomee-plugin.classes", defaultValue =
"${project.build.outputDirectory}", readonly = true)
protected File classes;
+ /**
+ * The War file.
+ */
@Parameter(defaultValue =
"${project.build.directory}/${project.build.finalName}.${project.packaging}")
protected File warFile;
+ /**
+ * The Work war file.
+ */
@Parameter(defaultValue =
"${project.build.directory}/${project.build.finalName}", readonly = true)
protected File workWarFile;
+ /**
+ * The Final name.
+ */
@Parameter(defaultValue = "${project.build.finalName}", readonly =
true)
protected String finalName;
+ /**
+ * The Artifact id.
+ */
@Parameter(defaultValue = "${project.artifactId}", readonly = true)
protected String artifactId;
+ /**
+ * The Remove default webapps.
+ */
@Parameter(property = "tomee-plugin.remove-default-webapps",
defaultValue = "true")
protected boolean removeDefaultWebapps;
+ /**
+ * The Deploy open ejb application.
+ */
@Parameter(property =
"tomee-plugin.deploy-openejb-internal-application", defaultValue = "false")
protected boolean deployOpenEjbApplication;
+ /**
+ * The Remove tomee webapp.
+ */
@Parameter(property = "tomee-plugin.remove-tomee-webapps",
defaultValue = "true")
protected boolean removeTomeeWebapp;
+ /**
+ * The Ejb remote.
+ */
@Parameter(property = "tomee-plugin.ejb-remote", defaultValue = "true")
protected boolean ejbRemote;
+ /**
+ * The Packaging.
+ */
@Parameter(defaultValue = "${project.packaging}", readonly = true)
protected String packaging;
+ /**
+ * The Check started.
+ */
@Parameter(property = "tomee-plugin.check-started", defaultValue =
"false")
protected boolean checkStarted;
+ /**
+ * The Use console.
+ */
@Parameter(property = "tomee-plugin.use-console", defaultValue =
"true")
protected boolean useConsole;
+ /**
+ * The Tomee already installed.
--- End diff --
Maybe use TomEE here.
---