使用maven的help插件的describ目标查看:
mvn help:describe -Dplugin=<plugin_name> -Dgoal=<goal> -Ddetail
以compiler为例:
mvn help:describe -Dplugin=compiler -Dgoal=compile -Ddetail=true
可以查看到compiler插件中有哪些配置项可以配置
help插件可以认为是一个帮助文档。help本身也有一个文档。通过mvn help:help可以看到。
mvn help:help -Ddetail=true
从中可以看到可以使用哪些参数去查看,比如:
mvn help:describe -DgroupId=org.apache.maven.plugins -DartifactId=maven-jar-plugin -Ddetail=true