Show / display a property of a Maven pom.xml
mvn help:evaluate -Dexpression=maven.compiler.sourcewhere maven.compiler.source is defined in the corresponding pom.xml as
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
is going to show
...
[INFO]
1.8
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS...
Comments
Post a Comment