Fix build errors in autorelease full clean build
[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.1-SNAPSHOT</version>
23     </parent>
24     <artifactId>commonlib-cbb</artifactId>
25     <packaging>jar</packaging>
26     <properties>
27         <cxf.version>3.1.6</cxf.version>
28     </properties>
29     <dependencies>
30         <dependency>
31             <groupId>com.googlecode.jmockit</groupId>
32             <artifactId>jmockit</artifactId>
33             <scope>test</scope>
34             <version>1.1</version>
35         </dependency>
36
37         <dependency>
38             <groupId>junit</groupId>
39             <artifactId>junit</artifactId>
40             <scope>test</scope>
41             <version>4.8.2</version>
42         </dependency>
43
44         <dependency>
45             <groupId>org.apache.commons</groupId>
46             <artifactId>commons-lang3</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>commons-io</groupId>
50             <artifactId>commons-io</artifactId>
51         </dependency>
52
53         <dependency>
54             <groupId>org.slf4j</groupId>
55             <artifactId>slf4j-log4j12</artifactId>
56         </dependency>
57
58         <dependency>
59             <groupId>org.codehaus.jackson</groupId>
60             <artifactId>jackson-mapper-asl</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>net.sf.json-lib</groupId>
64             <artifactId>json-lib</artifactId>
65             <classifier>jdk15</classifier>
66         </dependency>
67         <dependency>
68             <groupId>javax.servlet</groupId>
69             <artifactId>servlet-api</artifactId>
70             <version>2.5</version>
71         </dependency>
72         <dependency>
73             <groupId>com.github.stephenc.jcip</groupId>
74             <artifactId>jcip-annotations</artifactId>
75             <version>1.0-1</version>
76              <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.apache.cxf</groupId>
80             <artifactId>cxf-rt-frontend-jaxrs</artifactId>
81             <version>${cxf.version}</version>
82         </dependency>
83         <dependency>
84             <groupId>org.apache.cxf</groupId>
85             <artifactId>cxf-rt-rs-client</artifactId>
86             <version>${cxf.version}</version>
87         </dependency>
88         <dependency>
89             <groupId>org.apache.cxf</groupId>
90             <artifactId>cxf-rt-transports-http-hc</artifactId>
91             <version>${cxf.version}</version>
92         </dependency>
93         <dependency>
94             <groupId>org.codehaus.jackson</groupId>
95             <artifactId>jackson-jaxrs</artifactId>
96             <version>1.9.2</version>
97         </dependency>
98     </dependencies>
99     <build>
100         <plugins>
101             <plugin>
102                 <groupId>org.apache.maven.plugins</groupId>
103                 <artifactId>maven-release-plugin</artifactId>
104                 <version>2.5.2</version>
105             </plugin>
106             <plugin>
107                 <groupId>org.apache.maven.plugins</groupId>
108                 <artifactId>maven-surefire-plugin</artifactId>
109                 <configuration>
110                     <argLine>-XX:-UseSplitVerifier</argLine>
111                     <skip>${maven.test.skip}</skip>
112                     <testFailureIgnore>${maven.test.failure.ignore}</testFailureIgnore>
113                     <excludes>
114                         <exclude>${excludesFile}</exclude>
115                     </excludes>
116                 </configuration>
117             </plugin>
118             <plugin>
119                 <groupId>org.codehaus.mojo</groupId>
120                 <artifactId>cobertura-maven-plugin</artifactId>
121                 <version>2.6</version>
122                 <configuration>
123                     <formats>
124                         <format>xml</format>
125                         <format>html</format>
126                     </formats>
127                 </configuration>
128                 <executions>
129                     <execution>
130                         <phase>package</phase>
131                         <goals>
132                             <goal>cobertura</goal>
133                         </goals>
134                     </execution>
135                 </executions>
136             </plugin>
137         </plugins>
138     </build>
139
140
141 </project>