Rename slf4j ref impl, add constants
[logging-analytics.git] / reference / logging-slf4j / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4       <groupId>org.onap.logging-analytics</groupId>
5       <artifactId>logging-reference</artifactId>
6       <version>1.2.0-SNAPSHOT</version>
7       <relativePath>..</relativePath>
8     </parent>
9     <artifactId>logging-slf4j</artifactId>
10     <name>logging-slf4j</name>
11     <packaging>jar</packaging>
12     <version>1.2.0-SNAPSHOT</version>
13
14     <dependencies>
15         <!-- Exported dependencies. -->
16         <dependency>
17             <groupId>org.slf4j</groupId>
18             <artifactId>slf4j-api</artifactId>
19         </dependency>
20         <!-- Provided dependencies. -->
21         <dependency>
22             <groupId>javax.servlet</groupId>
23             <artifactId>javax.servlet-api</artifactId>
24             <scope>provided</scope>
25         </dependency>
26         <!-- Test dependencies. -->
27         <dependency>
28             <groupId>ch.qos.logback</groupId>
29             <artifactId>logback-classic</artifactId>
30             <scope>test</scope>
31         </dependency>
32         <dependency>
33             <groupId>org.springframework</groupId>
34             <artifactId>spring-test</artifactId>
35             <scope>test</scope>
36         </dependency>
37         <dependency>
38             <groupId>org.testng</groupId>
39             <artifactId>testng</artifactId>
40             <scope>test</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.hamcrest</groupId>
44             <artifactId>hamcrest-all</artifactId>
45             <scope>test</scope>
46         </dependency>
47     </dependencies>
48
49     <dependencyManagement>
50         <dependencies>
51             <dependency>
52                 <groupId>org.slf4j</groupId>
53                 <artifactId>slf4j-api</artifactId>
54                 <version>1.7.25</version>
55             </dependency>
56             <dependency>
57                 <groupId>javax.servlet</groupId>
58                 <artifactId>javax.servlet-api</artifactId>
59                 <version>3.1.0</version>
60                 <scope>provided</scope>
61             </dependency>
62             <dependency>
63                 <groupId>ch.qos.logback</groupId>
64                 <artifactId>logback-classic</artifactId>
65                 <version>1.2.3</version>
66             </dependency>
67             <dependency>
68                 <groupId>org.testng</groupId>
69                 <artifactId>testng</artifactId>
70                 <version>6.8.5</version>
71                 <exclusions>
72                     <exclusion>
73                         <groupId>junit</groupId>
74                         <artifactId>junit</artifactId>
75                     </exclusion>
76                 </exclusions>
77             </dependency>
78             <dependency>
79                 <groupId>org.hamcrest</groupId>
80                 <artifactId>hamcrest-all</artifactId>
81                 <version>1.3</version>
82             </dependency>
83             <dependency>
84                 <groupId>org.springframework</groupId>
85                 <artifactId>spring-test</artifactId>
86                 <version>5.0.5.RELEASE</version>
87             </dependency>
88         </dependencies>
89     </dependencyManagement>
90
91 </project>