Refactoring POM's and .gitignore
[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.4-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>logging-filter-spring</artifactId>
12
13   <name>logging-analytics :: ${project.artifactId}</name>
14
15   <dependencyManagement>
16     <dependencies>
17       <dependency>
18         <groupId>org.springframework.boot</groupId>
19         <artifactId>spring-boot-dependencies</artifactId>
20         <version>2.0.5.RELEASE</version>
21         <type>pom</type>
22         <scope>import</scope>
23       </dependency>
24     </dependencies>
25   </dependencyManagement>
26   <dependencies>
27     <dependency>
28       <groupId>org.springframework</groupId>
29       <artifactId>spring-webmvc</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.onap.logging-analytics</groupId>
33       <artifactId>logging-filter-base</artifactId>
34       <version>${project.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>org.onap.logging-analytics</groupId>
38       <artifactId>logging-slf4j</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>javax.servlet</groupId>
42       <artifactId>javax.servlet-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>javax.ws.rs</groupId>
46       <artifactId>javax.ws.rs-api</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.slf4j</groupId>
50       <artifactId>slf4j-api</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.apache.logging.log4j</groupId>
54       <artifactId>log4j-slf4j-impl</artifactId>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.glassfish.jersey.core</groupId>
64       <artifactId>jersey-client</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.mockito</groupId>
69       <artifactId>mockito-core</artifactId>
70       <scope>test</scope>
71     </dependency>
72   </dependencies>
73 </project>