With custom MySQL credentials
You can specify MySQL credentials, if you don't like the default ones (database root, user root and password root), for example:
<project>
<build>
<plugins>
<plugin>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-mysql-maven-plugin</artifactId>
<version>0.10.2</version>
<configuration>
<port>${mysql.port}</port>
<data>${project.build.directory}/mysql-data</data>
<user>jeff</user>
<password>secret-6353</password>
<dbname>example</dbname>
</configuration>
</plugin>
</plugins>
</build>
[...]
</project>