25
Apr
profiles in pom.xml
Inside pom.xml we can create profiles as follow:
…..
In this example when you run the pom without any argument mvn clean install default profile will execute.
When executed with mvn -Denv=win64 clean install
win64 profile will executed.
reference maven profiles
0 comments