Remove flywat from DDI & DMF servers (#2370)

Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2025-04-24 16:27:48 +03:00
committed by GitHub
parent df398c9a74
commit 323738bda9
4 changed files with 13 additions and 30 deletions

View File

@@ -51,17 +51,6 @@
<artifactId>mariadb-java-client</artifactId>
</dependency>
<!-- h2 flyway is supported by the flyway-core dependency -->
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-mysql</artifactId>
</dependency>
<!-- Database END -->
<!-- Test -->
<dependency>
<groupId>org.eclipse.hawkbit</groupId>
@@ -69,6 +58,19 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<!-- h2 flyway is supported by the flyway-core dependency -->
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-mysql</artifactId>
<scope>test</scope>
</dependency>
<!-- Database END -->
</dependencies>
<build>