Datasource configuration in wildfly 10
I am trying to configure a PostgreSQL datasource in Wildfly 10 Application Server on Mac OS. I am doing what the instructions prescribe. I have created an order: /wildfly-10.1.0.Final/modules/system/layers/base/org/postgresql/main. In this order I have put the JDBC driver: postgresql-9.3-1104.jdbc4.jar and I have created a module.xml file: <?xml version="1.0" encoding="UTF-8"?> <module xmlns="urn:jboss:module:1.3" name="org.postgresql“> <resources> <resource-root path="postgresql-9.3-1104.jdbc4.jar"/> </resources> <dependencies> <module name="javax.api"/> <module name="javax.transaction.api"/>