Hello,
I'm provisioning Wildfly using wildfly-maven-plugin and i have a layer that provisions a postgresql datasource. I can't find any documentation on how to set the <param name="connection-properties" value="what do i put here?"/> on the subsystem.datasources.data-source.connection-properties feature.
right now regardless of what i have put into value it will provision standalone.xml with only one connection-property with the name of the value and undefined as value like:
<connection-property name="what i put in param value">
undefined
</connection-property>
how do i configure. the layer spec to generate a standalone.xml with:
<connection-property name="loginTimeout>5</connection-property>
<connection-property name=connectionTimeout>5</connection-property>
Can anyone point me in the right direction?