Add mariadb-java-client to the server images (#2086)

So, they will be ready to connect to mysql

Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2024-11-20 09:57:36 +02:00
committed by GitHub
parent 968ed74b37
commit 8d3aa7c9ce
4 changed files with 16 additions and 15 deletions

View File

@@ -42,6 +42,10 @@
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency> <!-- if run against mysql with jdbc:mysql schema -->
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
@@ -58,11 +62,6 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency> <!-- if run against mysql -->
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>