Prepare for Junit5
[sdc.git] / common / onap-tosca-datatype / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright © 2016-2018 European Support Limited
4   ~
5   ~ Licensed under the Apache License, Version 2.0 (the "License");
6   ~ you may not use this file except in compliance with the License.
7   ~ You may obtain a copy of the License at
8   ~
9   ~      http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~ Unless required by applicable law or agreed to in writing, software
12   ~ distributed under the License is distributed on an "AS IS" BASIS,
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~ See the License for the specific language governing permissions and
15   ~ limitations under the License.
16   -->
17
18 <project xmlns="http://maven.apache.org/POM/4.0.0"
19   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21   <modelVersion>4.0.0</modelVersion>
22
23   <artifactId>onap-tosca-datatype</artifactId>
24
25   <parent>
26     <artifactId>onap-common-lib</artifactId>
27     <groupId>org.onap.sdc.common</groupId>
28     <version>1.7.0-SNAPSHOT</version>
29   </parent>
30
31   <dependencies>
32     <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
33     <dependency>
34       <groupId>org.junit.jupiter</groupId>
35       <artifactId>junit-jupiter-engine</artifactId>
36       <version>${junitJupiter.version}</version>
37       <scope>test</scope>
38     </dependency>
39     <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API  -->
40     <dependency>
41       <groupId>org.junit.vintage</groupId>
42       <artifactId>junit-vintage-engine</artifactId>
43       <version>${junitJupiter.version}</version>
44     </dependency>
45
46     <dependency>
47       <groupId>org.yaml</groupId>
48       <artifactId>snakeyaml</artifactId>
49       <version>1.17</version>
50     </dependency>
51     <dependency>
52       <groupId>org.apache.commons</groupId>
53       <artifactId>commons-collections4</artifactId>
54       <version>${commons.collections.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>commons-beanutils</groupId>
58       <artifactId>commons-beanutils</artifactId>
59       <version>${commons-beanutils}</version>
60     </dependency>
61     <dependency>
62       <groupId>com.fasterxml.jackson.core</groupId>
63       <artifactId>jackson-databind</artifactId>
64       <version>${jackson.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>org.mockito</groupId>
68       <artifactId>mockito-core</artifactId>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>com.google.guava</groupId>
73       <artifactId>guava</artifactId>
74       <version>${guava.version}</version>
75       <scope>compile</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.projectlombok</groupId>
79       <artifactId>lombok</artifactId>
80       <scope>provided</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.slf4j</groupId>
84       <artifactId>slf4j-api</artifactId>
85       <version>${slf4j.version}</version>
86     </dependency>
87     <dependency>
88       <groupId>org.apache.commons</groupId>
89       <artifactId>commons-lang3</artifactId>
90       <version>${lang3.version}</version>
91       <scope>provided</scope>
92     </dependency>
93     <dependency>
94       <groupId>com.google.code.bean-matchers</groupId>
95       <artifactId>bean-matchers</artifactId>
96       <version>${bean-matchers.version}</version>
97       <scope>test</scope>
98     </dependency>
99   </dependencies>
100 </project>