Mysql driver version 5 support

Hi team,

Is it possible to downgrade MySQL driver to 5? I tried to set it in Jmix plugin configuration, but it still uses version 8.

Please refer to post from China forum:

Just found out mysql 8 was added here:

+--- io.jmix.bom:jmix-bom:1.0.1
|    +--- org.springframework.boot:spring-boot-dependencies:2.5.2
|    |    +--- mysql:mysql-connector-java:8.0.25 (c)

Though I can force the project to use version 5 by:

runtimeOnly('mysql:mysql-connector-java') {
        version {
            strictly '5.1.49'
        }
}

Could you please let me know if there is any fallback of doing this?