Merge "Reset artifact versions to 1.0.0-SNAPSHOT"
[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"
18     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19     <modelVersion>4.0.0</modelVersion>
20     <parent>
21        <groupId>org.openo.common-services.common-utilities</groupId>
22            <artifactId>common-setting</artifactId>
23            <version>1.0.0-SNAPSHOT</version>
24     </parent>
25     <artifactId>commonlib-cbb</artifactId>
26     <version>1.0.0-SNAPSHOT</version>
27     <packaging>jar</packaging>
28     <properties>
29         <cxf.version>3.1.6</cxf.version>
30     </properties>
31     <dependencies>
32         <dependency>
33             <groupId>com.googlecode.jmockit</groupId>
34             <artifactId>jmockit</artifactId>
35             <scope>test</scope>
36             <version>1.1</version>
37         </dependency>
38
39         <dependency>
40             <groupId>junit</groupId>
41             <artifactId>junit</artifactId>
42             <scope>test</scope>
43             <version>4.8.2</version>
44         </dependency>
45
46         <dependency>
47             <groupId>org.apache.commons</groupId>
48             <artifactId>commons-lang3</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>commons-io</groupId>
52             <artifactId>commons-io</artifactId>
53         </dependency>
54
55         <dependency>
56             <groupId>org.slf4j</groupId>
57             <artifactId>slf4j-log4j12</artifactId>
58         </dependency>
59
60         <dependency>
61             <groupId>org.codehaus.jackson</groupId>
62             <artifactId>jackson-mapper-asl</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>net.sf.json-lib</groupId>
66             <artifactId>json-lib</artifactId>
67             <classifier>jdk15</classifier>
68         </dependency>
69         <dependency>
70             <groupId>javax.servlet</groupId>
71             <artifactId>servlet-api</artifactId>
72             <version>2.5</version>
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>
144