70244a928626eb20b4e2628fcc6c7d2c2fcea3b4
[logging-analytics.git] / reference / logging-filter / logging-filter-spring / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3         <modelVersion>4.0.0</modelVersion>
4
5         <parent>
6                 <groupId>org.onap.logging-analytics</groupId>
7                 <artifactId>logging-filter-parent</artifactId>
8                 <version>1.6.1-SNAPSHOT</version>
9         </parent>
10
11         <artifactId>logging-filter-spring</artifactId>
12
13         <dependencyManagement>
14                 <dependencies>
15                         <dependency>
16                                 <groupId>org.springframework.boot</groupId>
17                                 <artifactId>spring-boot-dependencies</artifactId>
18                                 <version>2.0.5.RELEASE</version>
19                                 <type>pom</type>
20                                 <scope>import</scope>
21                         </dependency>
22                 </dependencies>
23         </dependencyManagement>
24         <dependencies>
25                 <dependency>
26                         <groupId>org.springframework</groupId>
27                         <artifactId>spring-webmvc</artifactId>
28                 </dependency>
29                 <dependency>
30                         <groupId>org.onap.logging-analytics</groupId>
31                         <artifactId>logging-filter-base</artifactId>
32                         <version>${project.version}</version>
33                 </dependency>
34                 <dependency>
35                         <groupId>org.onap.logging-analytics</groupId>
36                         <artifactId>logging-slf4j</artifactId>
37                 </dependency>
38                 <dependency>
39                         <groupId>javax.servlet</groupId>
40                         <artifactId>javax.servlet-api</artifactId>
41                 </dependency>
42                 <dependency>
43                         <groupId>javax.ws.rs</groupId>
44                         <artifactId>javax.ws.rs-api</artifactId>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.slf4j</groupId>
48                         <artifactId>slf4j-api</artifactId>
49                 </dependency>
50                 <dependency>
51                         <groupId>org.apache.logging.log4j</groupId>
52                         <artifactId>log4j-slf4j-impl</artifactId>
53                         <scope>test</scope>
54                 </dependency>
55                 <dependency>
56                         <groupId>junit</groupId>
57                         <artifactId>junit</artifactId>
58                         <scope>test</scope>
59                 </dependency>
60                 <dependency>
61                         <groupId>org.glassfish.jersey.core</groupId>
62                         <artifactId>jersey-client</artifactId>
63                         <scope>test</scope>
64                 </dependency>
65                 <dependency>
66                         <groupId>org.mockito</groupId>
67                         <artifactId>mockito-core</artifactId>
68                         <scope>test</scope>
69         </dependency>
70         </dependencies>
71 </project>