Bump version to 1.13.0-SNAPSHOT
[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.13.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     </dependency>
17     <dependency>
18       <groupId>org.apache.cxf</groupId>
19       <artifactId>cxf-rt-bindings-soap</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.apache.cxf</groupId>
23       <artifactId>cxf-rt-transports-http</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>javax.servlet</groupId>
27       <artifactId>javax.servlet-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.slf4j</groupId>
31       <artifactId>slf4j-ext</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.slf4j</groupId>
35       <artifactId>slf4j-api</artifactId>
36     </dependency>
37   </dependencies>
38   <build>
39     <resources>
40       <resource>
41         <directory>src/main/resources</directory>
42         <filtering>true</filtering>
43       </resource>
44       <resource>
45         <directory>src/main/java</directory>
46         <includes>
47           <include>**/*.java</include>
48         </includes>
49       </resource>
50     </resources>
51   </build>
52   <artifactId>cxf-logging</artifactId>
53 </project>