b1dfac5a9aad53de06fbaa02ae4b49323b7a4e36
[vfc/nfvo/wfengine.git] / common-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   Copyright 2016 Huawei Technologies Co., Ltd.
4  
5   Licensed under the Apache License, Version 2.0 (the "License");
6   you may not use this file except in compliance with the License.
7   You may obtain a copy of the License at
8  
9   http://www.apache.org/licenses/LICENSE-2.0
10  
11   Unless required by applicable law or agreed to in writing, software
12   distributed under the License is distributed on an "AS IS" BASIS,
13   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   See the License for the specific language governing permissions and
15   limitations under the License.
16 -->
17 <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">
18     <modelVersion>4.0.0</modelVersion>
19     <parent>
20        <groupId>org.openo.common-services.common-utilities</groupId>
21            <artifactId>common-setting</artifactId>
22            <version>1.0.0-SNAPSHOT</version>
23     </parent>
24     <artifactId>commonlib-cbb</artifactId>
25     <version>1.0.0-SNAPSHOT</version>
26     <packaging>jar</packaging>
27     <properties>
28         <cxf.version>3.1.6</cxf.version>
29     </properties>
30     <dependencies>
31         <dependency>
32             <groupId>com.googlecode.jmockit</groupId>
33             <artifactId>jmockit</artifactId>
34             <scope>test</scope>
35             <version>1.1</version>
36         </dependency>
37
38         <dependency>
39             <groupId>junit</groupId>
40             <artifactId>junit</artifactId>
41             <scope>test</scope>
42             <version>4.8.2</version>
43         </dependency>
44
45         <dependency>
46             <groupId>org.apache.commons</groupId>
47             <artifactId>commons-lang3</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>commons-io</groupId>
51             <artifactId>commons-io</artifactId>
52         </dependency>
53
54         <dependency>
55             <groupId>org.slf4j</groupId>
56             <artifactId>slf4j-log4j12</artifactId>
57         </dependency>
58
59         <dependency>
60             <groupId>org.codehaus.jackson</groupId>
61             <artifactId>jackson-mapper-asl</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>net.sf.json-lib</groupId>
65             <artifactId>json-lib</artifactId>
66             <classifier>jdk15</classifier>
67         </dependency>
68         <dependency>
69             <groupId>javax.servlet</groupId>
70             <artifactId>servlet-api</artifactId>
71             <version>2.5</version>
72             <scope>provided</scope>
73         </dependency>
74         <dependency>
75             <groupId>com.github.stephenc.jcip</groupId>
76             <artifactId>jcip-annotations</artifactId>
77             <version>1.0-1</version>
78              <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.apache.cxf</groupId>
82             <artifactId>cxf-rt-frontend-jaxrs</artifactId>
83             <version>${cxf.version}</version>
84         </dependency>
85         <dependency>
86             <groupId>org.apache.cxf</groupId>
87             <artifactId>cxf-rt-rs-client</artifactId>
88             <version>${cxf.version}</version>
89         </dependency>
90         <dependency>
91             <groupId>org.apache.cxf</groupId>
92             <artifactId>cxf-rt-transports-http-hc</artifactId>
93             <version>${cxf.version}</version>
94         </dependency>
95         <dependency>
96             <groupId>org.codehaus.jackson</groupId>
97             <artifactId>jackson-jaxrs</artifactId>
98             <version>1.9.2</version>
99         </dependency>
100     </dependencies>
101     <build>
102         <plugins>
103             <plugin>
104                 <groupId>org.apache.maven.plugins</groupId>
105                 <artifactId>maven-release-plugin</artifactId>
106                 <version>2.5.2</version>
107             </plugin>
108             <plugin>
109                 <groupId>org.apache.maven.plugins</groupId>
110                 <artifactId>maven-surefire-plugin</artifactId>
111                 <configuration>
112                     <argLine>-XX:-UseSplitVerifier</argLine>
113                     <skip>${maven.test.skip}</skip>
114                     <testFailureIgnore>${maven.test.failure.ignore}</testFailureIgnore>
115                     <excludes>
116                         <exclude>${excludesFile}</exclude>
117                     </excludes>
118                 </configuration>
119             </plugin>
120             <plugin>
121                 <groupId>org.codehaus.mojo</groupId>
122                 <artifactId>cobertura-maven-plugin</artifactId>
123                 <version>2.6</version>
124                 <configuration>
125                     <formats>
126                         <format>xml</format>
127                         <format>html</format>
128                     </formats>
129                 </configuration>
130                 <executions>
131                     <execution>
132                         <phase>package</phase>
133                         <goals>
134                             <goal>cobertura</goal>
135                         </goals>
136                     </execution>
137                 </executions>
138             </plugin>
139         </plugins>
140     </build>
141
142
143 </project>