I have a property in root pom.xml file: gecko1_8. I want to place this to gwt.xml file.
So I put this property to gwt.xml:
I added the following to build section:
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>VAADIN.themes/*</exclude>
</excludes>
</resource>
</resources>
But at the end build failed with the error:
ERROR: Invalid property value '${gwt.user.agents}'
ERROR: Failure while parsing XML
How to place values from pom.xml to gwt.xml file via properties?
UPDATED
Interesting thing. When I use "mvn resources:resources", property's value writes correctly to gwt.xml file, but if I run "mvn clean install -pl com.myproject.module:submodule" it failes with "invalid property value".