blob: 2c891f2c4a0263904420c312c9c1a69ec9aa316c [file] [log] [blame]
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -04001<?xml version="1.0"?>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.onap.so</groupId>
7 <artifactId>so</artifactId>
8 <version>1.4.0-SNAPSHOT</version>
9 </parent>
10 <name>CXFLogging</name>
11 <description>Common CXF Logging Classes</description>
12 <dependencies>
13 <dependency>
14 <groupId>org.apache.cxf</groupId>
15 <artifactId>cxf-rt-rs-client</artifactId>
16 <version>${cxf.version}</version>
17 </dependency>
18 <dependency>
19 <groupId>org.apache.cxf</groupId>
20 <artifactId>cxf-rt-bindings-soap</artifactId>
21 <version>${cxf.version}</version>
22 </dependency>
23 <dependency>
24 <groupId>org.apache.cxf</groupId>
25 <artifactId>cxf-rt-transports-http</artifactId>
26 <version>${cxf.version}</version>
27 </dependency>
28 <dependency>
29 <groupId>javax.servlet</groupId>
30 <artifactId>javax.servlet-api</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.slf4j</groupId>
34 <artifactId>slf4j-ext</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>org.slf4j</groupId>
38 <artifactId>slf4j-api</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>org.onap.logging-analytics</groupId>
42 <artifactId>logging-slf4j</artifactId>
43 <version>1.2.2</version>
44 </dependency>
45 </dependencies>
46 <build>
47 <resources>
48 <resource>
49 <directory>src/main/resources</directory>
50 <filtering>true</filtering>
51 </resource>
52 <resource>
53 <directory>src/main/java</directory>
54 <includes>
55 <include>**/*.java</include>
56 </includes>
57 </resource>
58 </resources>
59 </build>
60 <artifactId>cxf-logging</artifactId>
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -040061</project>