I would like to find out the values of all Maven properties as they apply to some Maven project.
mvn help:system
lists OS environment variables and JVM system properties, but no Maven properties.
mvn help:evaluate
only works in an interactive mode, that means I have to type a single Maven property, (e.g. ${project.build.outputDirectory}
) to get the value of that property.
I'm looking for a way get a full list of all Maven properties and their values.