it is possible to pass arguments from command line to properties in pom file ?
for example I run mvn ... argument
and in pom.xml
<properties>
<myproperty> here should add argument from command line</myproperty>
</properties>
thx for help
|
it is possible to pass arguments from command line to properties in pom file ?
for example I run and in pom.xml
thx for help |
|||
|
|
|
For your property example do:
Note quotes around whole property definition. You'll need them if your property contains spaces. |
|||
|
|
|
Not directly what you're asking for but maven profiles may be useful for this |
|||
|