Reputation: 13501
I would like to reuse my GWT linker in several projects, with different configurations. Is it possible to define properties or parameters to the linker in my module configuration?
Upvotes: 3
Views: 243
Reputation: 669
Use LinkerContext to get ConfigurationProperty, it contains all configurationproperty-values in your module.
To set a configuration property value:
<set-configuration-property name="Patrik" value="wasHere" />
Upvotes: 7