maven-help-plugin
maven-help-plugin copied to clipboard
Apache Maven Help Plugin
**[Tamas Cservenak](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=cstamas)** opened **[MPH-222](https://issues.apache.org/jira/browse/MPH-222?redirect=false)** and commented If you invoke with mvn master ``` $ mvn help:evaluate -Dexpression=project.repositories ``` or ``` $ mvn help:evaluate -Dexpression=settings.repositories ``` it explodes with: ``` [ERROR]...
**[Guillaume Nodet](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=gnt)** opened **[MPH-210](https://issues.apache.org/jira/browse/MPH-210?redirect=false)** and commented Note that this only happens on JDK >= 21 and Maven 3.x. ``` ➜ maven-help-plugin git:(master) ✗ mvn -V help:evaluate -Dexpression=project.build.resources Apache Maven 3.9.5...
**[Hervé Boutemy](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=hboutemy)** opened **[MPH-122](https://issues.apache.org/jira/browse/MPH-122?redirect=false)** and commented as discussed on users@maven ML: https://lists.apache.org/thread.html/09fa512d289a02c3c7d5262cbeff3285fe36e7eaa935528de69191ac@%3Cusers.maven.apache.org%3E > I vote for a help plugin goal, like help:color-style. It could show a brief summary and how...
**[Nils Breunese](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=breun)** opened **[MPH-220](https://issues.apache.org/jira/browse/MPH-220?redirect=false)** and commented https://maven.apache.org/plugins/maven-help-plugin/evaluate-mojo.html shows that to use the value of an expression in a script, you can use this: ``` mvn help:evaluate -Dexpression=project.version -q -DforceStdout ```...
**[Robert Scholte](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=rfscholte)** opened **[MPH-183](https://issues.apache.org/jira/browse/MPH-183?redirect=false)** and commented The popular spring-boot makes a lot of use of BOMs. Using BOMs is a good practice, but right now it is very hard to...
**[Elliotte Rusty Harold](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=elharo)** opened **[MPH-219](https://issues.apache.org/jira/browse/MPH-219?redirect=false)** and commented It's just static methods. It misuses inheritance. --- No further details from [MPH-219](https://issues.apache.org/jira/browse/MPH-219?redirect=false)
**[Elliotte Rusty Harold](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=elharo)** opened **[MPH-218](https://issues.apache.org/jira/browse/MPH-218?redirect=false)** and commented {{ return output; } catch (SecurityException e) { throw new MojoFailureException("SecurityException: " + e.getMessage()); } catch (IllegalArgumentException e) { throw new MojoFailureException("IllegalArgumentException: "...
**[Gary D. Gregory](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=garydgregory)** opened **[MPH-217](https://issues.apache.org/jira/browse/MPH-217?redirect=false)** and commented Running "mvn help:effective-pom" does not show the value for a POM's "packaging" value. It's not clear from the site documentation if "packaging" is...
**[Delany](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=delany)** opened **[MPH-204](https://issues.apache.org/jira/browse/MPH-204?redirect=false)** and commented The describe goal should retrieve the requested artifact from the available pluginRepositories, not from repositories. --- **Affects:** 3.4.0
**[Georg Lippold](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=gl-mc)** opened **[MPH-175](https://issues.apache.org/jira/browse/MPH-175?redirect=false)** and commented When executing mvn help:effective-pom, the \ XML node is left intact. The \ should be removed in the effective POM. If you generate the...