blob: f0c969aeb138d416d1f875d8bde19b6d15bf1d3e [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>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040040 </dependencies>
41 <build>
42 <resources>
43 <resource>
44 <directory>src/main/resources</directory>
45 <filtering>true</filtering>
46 </resource>
47 <resource>
48 <directory>src/main/java</directory>
49 <includes>
50 <include>**/*.java</include>
51 </includes>
52 </resource>
53 </resources>
54 </build>
55 <artifactId>cxf-logging</artifactId>
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -040056</project>