11/7: merge casablanca to master
[so.git] / cxf-logging / pom.xml
1 <?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.4.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</version>
43                 </dependency>
44     </dependencies>
45         <build>
46                 <resources>
47                         <resource>
48                                 <directory>src/main/resources</directory>
49                                 <filtering>true</filtering>
50                         </resource>
51                         <resource>
52                                 <directory>src/main/java</directory>
53                                 <includes>
54                                         <include>**/*.java</include>
55                                 </includes>
56                         </resource>
57                 </resources>            
58         </build>
59         <artifactId>cxf-logging</artifactId>
60 </project>