Reduce scope from 'compile' to 'test' for 'junit-vintage-engine'
[sdc.git] / common-app-logging / 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
6   <modelVersion>4.0.0</modelVersion>
7
8   <artifactId>common-app-logging</artifactId>
9   <parent>
10     <groupId>org.openecomp.sdc</groupId>
11     <artifactId>sdc-main</artifactId>
12     <version>1.7.0-SNAPSHOT</version>
13   </parent>
14
15   <dependencies>
16     <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
17     <dependency>
18       <groupId>org.junit.jupiter</groupId>
19       <artifactId>junit-jupiter-engine</artifactId>
20       <version>${junitJupiter.version}</version>
21       <scope>test</scope>
22     </dependency>
23     <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API  -->
24     <dependency>
25       <groupId>org.junit.vintage</groupId>
26       <artifactId>junit-vintage-engine</artifactId>
27       <version>${junitJupiter.version}</version>
28       <scope>test</scope>
29     </dependency>
30
31     <dependency>
32       <groupId>javax.servlet</groupId>
33       <artifactId>javax.servlet-api</artifactId>
34       <version>${servlet-api.version}</version>
35       <scope>provided</scope>
36     </dependency>
37     <dependency>
38       <groupId>javax.ws.rs</groupId>
39       <artifactId>javax.ws.rs-api</artifactId>
40       <version>${ws.rs.version}</version>
41       <scope>provided</scope>
42     </dependency>
43
44     <dependency>
45       <groupId>org.aspectj</groupId>
46       <artifactId>aspectjrt</artifactId>
47       <version>${aspectjrt.version}</version>
48       <scope>provided</scope>
49     </dependency>
50
51     <dependency>
52       <groupId>org.apache.commons</groupId>
53       <artifactId>commons-lang3</artifactId>
54       <version>${lang3.version}</version>
55       <scope>provided</scope>
56     </dependency>
57
58     <dependency>
59       <groupId>ch.qos.logback</groupId>
60       <artifactId>logback-classic</artifactId>
61       <version>${logback.version}</version>
62       <scope>provided</scope>
63     </dependency>
64
65     <dependency>
66       <groupId>com.google.guava</groupId>
67       <artifactId>guava</artifactId>
68       <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
69       <scope>provided</scope>
70     </dependency>
71
72     <dependency>
73       <groupId>com.google.code.bean-matchers</groupId>
74       <artifactId>bean-matchers</artifactId>
75       <version>${bean-matchers.version}</version>
76       <scope>test</scope>
77     </dependency>
78
79     <dependency>
80       <groupId>commons-validator</groupId>
81       <artifactId>commons-validator</artifactId>
82       <version>1.6</version>
83       <exclusions>
84         <exclusion>
85           <artifactId>commons-collections</artifactId>
86           <groupId>commons-collections</groupId>
87         </exclusion>
88       </exclusions>
89     </dependency>
90
91     <dependency>
92       <artifactId>commons-collections</artifactId>
93       <groupId>commons-collections</groupId>
94       <version>3.2.2</version>
95     </dependency>
96
97     <dependency>
98       <groupId>org.assertj</groupId>
99       <artifactId>assertj-core</artifactId>
100       <version>${assertj.version}</version>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.onap.logging-analytics</groupId>
105       <artifactId>logging-slf4j</artifactId>
106       <version>${onap.logging.version}</version>
107     </dependency>
108     <dependency>
109       <groupId>org.onap.logging-analytics</groupId>
110       <artifactId>logging-filter-base</artifactId>
111       <version>${onap.logging.version}</version>
112     </dependency>
113     <dependency>
114       <groupId>org.junit.jupiter</groupId>
115       <artifactId>junit-jupiter</artifactId>
116       <version>${junitJupiter.version}</version>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>org.mockito</groupId>
121       <artifactId>mockito-junit-jupiter</artifactId>
122       <version>${mockitoJupiter.version}</version>
123       <scope>test</scope>
124     </dependency>
125
126     <dependency>
127       <groupId>org.projectlombok</groupId>
128       <artifactId>lombok</artifactId>
129       <version>${lombok.version}</version>
130     </dependency>
131   </dependencies>
132
133 </project>