Hi, the steps reported look generally good, at a glance. It seems that your problem is the unavailability of the MariaDB JDBC Driver at some point.
I haven't the chance to give it a try before tomorrow, but you could attempt, in the meantime, to: 1. check if the DataSource was correctly defined for MariaDB in Wildfly 10; see http://stackoverflow.com/a/39868576 2. if this still does not work, remove any Datasource definition from Wildfly and add instead the following Maven depedency: <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> <version>1.5.5</version> </dependency to core/pom.xml HTH Regards. -- View this message in context: http://syncope-user.1051894.n5.nabble.com/Deploying-Syncope-Mvn-Wildfly-tp5708844p5708851.html Sent from the syncope-user mailing list archive at Nabble.com.
