Grails and MariaDB
To create a grails project with MariaDB support go to the base directory for grails projects and issue the following command. [codesyntax lang=”bash”] grails create-app yourProjectName [/codesyntax] Change directory to yourProjectName and edit the build.gradle. Include the following dependency ” runtimeOnly ‘org.mariadb.jdbc:mariadb-java-client:2.7.4′”. Save the file and issue the following command “grails compile”. You should now […]