I have a GWT project and I build it with maven.
-T 1C clean install -pl admin-module -am -DskipTests -f pom.xml
And I have admin.gwt.xml
file with this property:
<set-property name="user.agent" value="safari"/>
Can I pass this property to maven instead override it in admin.gwt.xml
?
Something like this:
-T 1C clean install -pl admin-module -am -DskipTests -f pom.xml -user.agent=safari
I find only one answer but it does not work for me.