Reduce scope from 'compile' to 'test' for 'junit-vintage-engine'
[sdc.git] / common / onap-generic-artifact-browser / onap-generic-artifact-browser-service / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>org.onap.sdc.common</groupId>
9     <artifactId>onap-generic-artifact-browser</artifactId>
10     <version>1.7.0-SNAPSHOT</version>
11   </parent>
12
13   <artifactId>onap-generic-artifact-browser-service</artifactId>
14
15   <properties>
16     <snakeyaml.version>1.21</snakeyaml.version>
17     <jsurfer.version>1.4.3</jsurfer.version>
18     <jacoco.skip>false</jacoco.skip>
19   </properties>
20
21   <dependencies>
22     <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
23     <dependency>
24       <groupId>org.junit.jupiter</groupId>
25       <artifactId>junit-jupiter-engine</artifactId>
26       <version>${junitJupiter.version}</version>
27       <scope>test</scope>
28     </dependency>
29     <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API  -->
30     <dependency>
31       <groupId>org.junit.vintage</groupId>
32       <artifactId>junit-vintage-engine</artifactId>
33       <version>${junitJupiter.version}</version>
34       <scope>test</scope>
35     </dependency>
36
37     <dependency>
38       <groupId>org.projectlombok</groupId>
39       <artifactId>lombok</artifactId>
40       <version>${lombok.version}</version>
41       <scope>provided</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.yaml</groupId>
45       <artifactId>snakeyaml</artifactId>
46       <version>${snakeyaml.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>com.google.code.gson</groupId>
50       <artifactId>gson</artifactId>
51       <version>${gson.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>com.github.jsurfer</groupId>
55       <artifactId>jsurfer-gson</artifactId>
56       <version>${jsurfer.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>com.google.guava</groupId>
60       <artifactId>guava</artifactId>
61       <version>${guava.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>commons-io</groupId>
65       <artifactId>commons-io</artifactId>
66       <version>${commons.io.version}</version>
67     </dependency>
68
69     <!--test-->
70     <dependency>
71       <groupId>org.hamcrest</groupId>
72       <artifactId>hamcrest-all</artifactId>
73       <version>${hamcrest-all.version}</version>
74       <scope>test</scope>
75     </dependency>
76
77     <dependency>
78       <groupId>org.junit.jupiter</groupId>
79       <artifactId>junit-jupiter</artifactId>
80       <version>${junitJupiter.version}</version>
81       <scope>test</scope>
82     </dependency>
83
84     <dependency>
85       <groupId>org.mockito</groupId>
86       <artifactId>mockito-junit-jupiter</artifactId>
87       <version>${mockitoJupiter.version}</version>
88       <scope>test</scope>
89     </dependency>
90   </dependencies>
91
92   <build>
93     <plugins>
94       <plugin>
95         <groupId>org.apache.maven.plugins</groupId>
96         <artifactId>maven-surefire-plugin</artifactId>
97         <version>${maven-surefire-plugin.version}</version>
98       </plugin>
99     </plugins>
100   </build>
101
102 </project>