Does GWT linker support parameters?

I would like to reuse my GWT linker in several projects with different configurations. Can I define the properties or parameters of the linker in my module configuration?

+3
source share
1 answer

Use LinkerContext to get ConfigurationProperty, it contains all the configuration values ​​in your module.

To set the value of a configuration property:

<set-configuration-property name="Patrik" value="wasHere" />
+7
source

Source: https://habr.com/ru/post/1757189/


All Articles