Bump SDC to 1.6.3
[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.6.3-SNAPSHOT</version>
13     </parent>
14
15     <dependencies>
16
17         <dependency>
18             <groupId>javax.servlet</groupId>
19             <artifactId>javax.servlet-api</artifactId>
20             <version>${servlet-api.version}</version>
21             <scope>provided</scope>
22         </dependency>
23         <dependency>
24             <groupId>javax.ws.rs</groupId>
25             <artifactId>javax.ws.rs-api</artifactId>
26             <version>${ws.rs.version}</version>
27             <scope>provided</scope>
28         </dependency>
29
30         <dependency>
31             <groupId>org.aspectj</groupId>
32             <artifactId>aspectjrt</artifactId>
33             <version>${aspectjrt.version}</version>
34             <scope>provided</scope>
35         </dependency>
36
37         <dependency>
38             <groupId>org.apache.commons</groupId>
39             <artifactId>commons-lang3</artifactId>
40             <version>${lang3.version}</version>
41             <scope>provided</scope>
42         </dependency>
43
44         <dependency>
45             <groupId>ch.qos.logback</groupId>
46             <artifactId>logback-classic</artifactId>
47             <version>${logback.version}</version>
48             <scope>provided</scope>
49         </dependency>
50
51         <dependency>
52             <groupId>com.google.guava</groupId>
53             <artifactId>guava</artifactId>
54             <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
55             <scope>provided</scope>
56         </dependency>
57
58         <dependency>
59             <groupId>com.google.code.bean-matchers</groupId>
60             <artifactId>bean-matchers</artifactId>
61             <version>${bean-matchers.version}</version>
62             <scope>test</scope>
63         </dependency>
64
65         <dependency>
66             <groupId>commons-validator</groupId>
67             <artifactId>commons-validator</artifactId>
68             <version>1.6</version>
69             <exclusions>
70                 <exclusion>
71                     <artifactId>commons-collections</artifactId>
72                     <groupId>commons-collections</groupId>
73                 </exclusion>
74             </exclusions>
75         </dependency>
76
77         <dependency>
78             <artifactId>commons-collections</artifactId>
79             <groupId>commons-collections</groupId>
80             <version>3.2.2</version>
81         </dependency>
82
83         <dependency>
84             <groupId>org.assertj</groupId>
85             <artifactId>assertj-core</artifactId>
86             <version>${assertj.version}</version>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.onap.logging-analytics</groupId>
91             <artifactId>logging-slf4j</artifactId>
92             <version>${onap.logging.version}</version>
93         </dependency>
94         <dependency>
95             <groupId>org.onap.logging-analytics</groupId>
96             <artifactId>logging-filter-base</artifactId>
97             <version>${onap.logging.version}</version>
98         </dependency>
99     </dependencies>
100
101 </project>