diff options
Diffstat (limited to 'models-provider/pom.xml')
-rw-r--r-- | models-provider/pom.xml | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/models-provider/pom.xml b/models-provider/pom.xml index 8da16edab..44756beb9 100644 --- a/models-provider/pom.xml +++ b/models-provider/pom.xml @@ -17,8 +17,7 @@ SPDX-License-Identifier: Apache-2.0 ============LICENSE_END========================================================= --> -<project xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> @@ -56,5 +55,18 @@ <artifactId>policy-models-tosca</artifactId> <version>${project.version}</version> </dependency> + + <dependency> + <groupId>com.h2database</groupId> + <artifactId>h2</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.mariadb.jdbc</groupId> + <artifactId>mariadb-java-client</artifactId> + <scope>test</scope> + </dependency> + </dependencies> </project> |