Merge "Add DeallocateNSSI Sub-process"
[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"
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.6.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   </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>
56 </project>