074cf13c6aaf800f3c7d8274ca9b68540fbae5e5
[vfc/nfvo/wfengine.git] / wso2 / 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.1.0-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             <scope>provided</scope>
72         </dependency>
73         <dependency>
74             <groupId>com.github.stephenc.jcip</groupId>
75             <artifactId>jcip-annotations</artifactId>
76             <version>1.0-1</version>
77              <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.apache.cxf</groupId>
81             <artifactId>cxf-rt-frontend-jaxrs</artifactId>
82             <version>${cxf.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>org.apache.cxf</groupId>
86             <artifactId>cxf-rt-rs-client</artifactId>
87             <version>${cxf.version}</version>
88         </dependency>
89         <dependency>
90             <groupId>org.apache.cxf</groupId>
91             <artifactId>cxf-rt-transports-http-hc</artifactId>
92             <version>${cxf.version}</version>
93         </dependency>
94         <dependency>
95             <groupId>org.codehaus.jackson</groupId>
96             <artifactId>jackson-jaxrs</artifactId>
97             <version>1.9.2</version>
98         </dependency>
99     </dependencies>
100     <build>
101         <plugins>
102             <plugin>
103                 <groupId>org.apache.maven.plugins</groupId>
104                 <artifactId>maven-release-plugin</artifactId>
105                 <version>2.5.2</version>
106             </plugin>
107             <plugin>
108                 <groupId>org.apache.maven.plugins</groupId>
109                 <artifactId>maven-surefire-plugin</artifactId>
110                 <configuration>
111                     <argLine>-XX:-UseSplitVerifier</argLine>
112                     <skip>${maven.test.skip}</skip>
113                     <testFailureIgnore>${maven.test.failure.ignore}</testFailureIgnore>
114                     <excludes>
115                         <exclude>${excludesFile}</exclude>
116                     </excludes>
117                 </configuration>
118             </plugin>
119             <plugin>
120                 <groupId>org.codehaus.mojo</groupId>
121                 <artifactId>cobertura-maven-plugin</artifactId>
122                 <version>2.6</version>
123                 <configuration>
124                     <formats>
125                         <format>xml</format>
126                         <format>html</format>
127                     </formats>
128                 </configuration>
129                 <executions>
130                     <execution>
131                         <phase>package</phase>
132                         <goals>
133                             <goal>cobertura</goal>
134                         </goals>
135                     </execution>
136                 </executions>
137             </plugin>
138         </plugins>
139     </build>
140
141
142 <name>common-services-common-utilities/common-util</name></project>