Reduce scope from 'compile' to 'test' for 'junit-vintage-engine'
[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       <scope>test</scope>
45     </dependency>
46
47     <dependency>
48       <groupId>org.yaml</groupId>
49       <artifactId>snakeyaml</artifactId>
50       <version>1.17</version>
51     </dependency>
52     <dependency>
53       <groupId>org.apache.commons</groupId>
54       <artifactId>commons-collections4</artifactId>
55       <version>${commons.collections.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>commons-beanutils</groupId>
59       <artifactId>commons-beanutils</artifactId>
60       <version>${commons-beanutils}</version>
61     </dependency>
62     <dependency>
63       <groupId>com.fasterxml.jackson.core</groupId>
64       <artifactId>jackson-databind</artifactId>
65       <version>${jackson.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>org.mockito</groupId>
69       <artifactId>mockito-core</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>com.google.guava</groupId>
74       <artifactId>guava</artifactId>
75       <version>${guava.version}</version>
76       <scope>compile</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.projectlombok</groupId>
80       <artifactId>lombok</artifactId>
81       <scope>provided</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.slf4j</groupId>
85       <artifactId>slf4j-api</artifactId>
86       <version>${slf4j.version}</version>
87     </dependency>
88     <dependency>
89       <groupId>org.apache.commons</groupId>
90       <artifactId>commons-lang3</artifactId>
91       <version>${lang3.version}</version>
92       <scope>provided</scope>
93     </dependency>
94     <dependency>
95       <groupId>com.google.code.bean-matchers</groupId>
96       <artifactId>bean-matchers</artifactId>
97       <version>${bean-matchers.version}</version>
98       <scope>test</scope>
99     </dependency>
100   </dependencies>
101 </project>