Update version to 1.13.6-SNAPSHOT
[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.13.6-SNAPSHOT</version>
13   </parent>
14
15   <dependencies>
16     <dependency>
17       <groupId>jakarta.ws.rs</groupId>
18       <artifactId>jakarta.ws.rs-api</artifactId>
19       <version>${ws.rs.version}</version>
20       <scope>provided</scope>
21     </dependency>
22
23     <dependency>
24       <groupId>org.aspectj</groupId>
25       <artifactId>aspectjrt</artifactId>
26       <version>${aspectjrt.version}</version>
27       <scope>provided</scope>
28     </dependency>
29
30     <dependency>
31       <groupId>org.apache.commons</groupId>
32       <artifactId>commons-lang3</artifactId>
33       <version>${lang3.version}</version>
34       <scope>provided</scope>
35     </dependency>
36
37     <dependency>
38       <groupId>ch.qos.logback</groupId>
39       <artifactId>logback-core</artifactId>
40       <version>${logback.version}</version>
41       <scope>compile</scope>
42     </dependency>
43
44     <dependency>
45       <groupId>ch.qos.logback</groupId>
46       <artifactId>logback-classic</artifactId>
47       <version>${logback.version}</version>
48       <scope>compile</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     <dependency>
100       <groupId>org.junit.jupiter</groupId>
101       <artifactId>junit-jupiter</artifactId>
102       <version>${junitJupiter.version}</version>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.mockito</groupId>
107       <artifactId>mockito-junit-jupiter</artifactId>
108       <version>${mockitoJupiter.version}</version>
109       <scope>test</scope>
110     </dependency>
111
112     <dependency>
113       <groupId>org.projectlombok</groupId>
114       <artifactId>lombok</artifactId>
115       <version>${lombok.version}</version>
116     </dependency>
117   </dependencies>
118
119 </project>