blob: 378d169175970c6e70f485bd17c4f6e59d5cf7d1 [file] [log] [blame]
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -04001<?xml version="1.0"?>
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 <parent>
5 <groupId>org.onap.so</groupId>
6 <artifactId>so</artifactId>
7 <version>1.3.0-SNAPSHOT</version>
8 </parent>
9 <name>CXFLogging</name>
10 <description>Common CXF Logging Classes</description>
11 <dependencies>
12 <dependency>
13 <groupId>org.apache.cxf</groupId>
14 <artifactId>cxf-rt-rs-client</artifactId>
15 <version>${cxf.version}</version>
16 </dependency>
17 <dependency>
18 <groupId>org.apache.cxf</groupId>
19 <artifactId>cxf-rt-bindings-soap</artifactId>
20 <version>${cxf.version}</version>
21 </dependency>
22 <dependency>
23 <groupId>org.apache.cxf</groupId>
24 <artifactId>cxf-rt-transports-http</artifactId>
25 <version>${cxf.version}</version>
26 </dependency>
27 <dependency>
28 <groupId>javax.servlet</groupId>
29 <artifactId>javax.servlet-api</artifactId>
30 </dependency>
31 <dependency>
32 <groupId>org.slf4j</groupId>
33 <artifactId>slf4j-ext</artifactId>
34 </dependency>
35 <dependency>
36 <groupId>org.slf4j</groupId>
37 <artifactId>slf4j-api</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>org.onap.logging-analytics</groupId>
41 <artifactId>logging-slf4j</artifactId>
42 <version>1.2.2-SNAPSHOT</version>
43 <exclusions>
44 <exclusion>
45 <groupId>com.att.eelf</groupId>
46 <artifactId>eelf-core</artifactId>
47 </exclusion>
48 </exclusions>
49 </dependency>
50 </dependencies>
51 <build>
52 <resources>
53 <resource>
54 <directory>src/main/resources</directory>
55 <filtering>true</filtering>
56 </resource>
57 <resource>
58 <directory>src/main/java</directory>
59 <includes>
60 <include>**/*.java</include>
61 </includes>
62 </resource>
63 </resources>
64 </build>
65 <artifactId>cxf-logging</artifactId>
66</project>