Merge "modify frame html files"
[vnfsdk/refrepo.git] / servicegateway / service / 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.gso.gui</groupId>
22         <artifactId>servicegateway</artifactId>
23         <version>1.0.0-SNAPSHOT</version>
24     </parent>
25
26     <artifactId>service</artifactId>
27     <name>service</name>
28     <packaging>war</packaging>
29
30     <dependencies>
31         <dependency>
32             <groupId>org.openo.common-services.common-utilities</groupId>
33             <artifactId>commonlib-cbb</artifactId>
34             <version>1.0.0-SNAPSHOT</version>
35         </dependency>
36         <!-- roa -->
37         <dependency>
38             <groupId>org.openo.common-services.common-utilities</groupId>
39             <artifactId>commonlib-restclient</artifactId>
40             <version>1.0.0-SNAPSHOT</version>
41         </dependency>
42         <dependency>
43             <groupId>org.apache.cxf</groupId>
44             <artifactId>cxf-rt-frontend-jaxrs</artifactId>
45             <version>3.1.6</version>
46         </dependency>
47         <dependency>
48             <groupId>commons-httpclient</groupId>
49             <artifactId>commons-httpclient</artifactId>
50             <version>3.1</version>
51         </dependency>
52
53         <dependency>
54             <groupId>org.openo.gso</groupId>
55             <artifactId>org.openo.gso.commsvc.common</artifactId>
56             <version>1.0.0-SNAPSHOT</version>
57         </dependency>
58         <dependency>
59             <groupId>org.springframework</groupId>
60             <artifactId>spring-beans</artifactId>
61             <version>3.1.0.RELEASE</version>
62         </dependency>
63         <dependency>
64             <groupId>org.springframework</groupId>
65             <artifactId>spring-context</artifactId>
66             <version>3.1.0.RELEASE</version>
67         </dependency>
68         <dependency>
69             <groupId>org.springframework</groupId>
70             <artifactId>spring-jdbc</artifactId>
71             <version>3.1.0.RELEASE</version>
72         </dependency>
73         <dependency>
74             <groupId>org.springframework</groupId>
75             <artifactId>spring-web</artifactId>
76             <version>3.1.0.RELEASE</version>
77         </dependency>
78         <dependency>
79             <groupId>org.osgi</groupId>
80             <artifactId>org.osgi.core</artifactId>
81             <version>4.1.0</version>
82         </dependency>
83         <dependency>
84             <groupId>org.mybatis</groupId>
85             <artifactId>mybatis</artifactId>
86             <version>3.2.7</version>
87         </dependency>
88         <dependency>
89             <groupId>org.mybatis</groupId>
90             <artifactId>mybatis-spring</artifactId>
91             <version>1.2.0</version>
92             <type>jar</type>
93             <scope>compile</scope>
94         </dependency>
95         <dependency>
96             <groupId>com.mchange</groupId>
97             <artifactId>c3p0</artifactId>
98             <version>0.9.2.1</version>
99             <type>jar</type>
100             <scope>compile</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.codehaus.jackson</groupId>
104             <artifactId>jackson-jaxrs</artifactId>
105             <version>1.9.2</version>
106         </dependency>
107         <dependency>
108             <groupId>javax.servlet</groupId>
109             <artifactId>javax.servlet-api</artifactId>
110             <version>3.1.0</version>
111         </dependency>        
112         <dependency>
113             <groupId>com.googlecode.jmockit</groupId>
114             <artifactId>jmockit</artifactId>
115             <version>1.1</version>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>junit</groupId>
120             <artifactId>junit</artifactId>
121             <version>4.12</version>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.jmockit</groupId>
126             <artifactId>jmockit-coverage</artifactId>
127             <version>1.18</version>
128             <scope>test</scope>
129         </dependency>
130         <dependency>
131             <groupId>com.h2database</groupId>
132             <artifactId>h2</artifactId>
133             <version>1.4.190</version>
134             <scope>test</scope>
135         </dependency>
136     </dependencies>
137     
138     <build>
139         <plugins>
140             <plugin>
141                 <groupId>org.apache.maven.plugins</groupId>
142                 <artifactId>maven-surefire-plugin</artifactId>
143                 <configuration>
144                     <argLine>-XX:-UseSplitVerifier</argLine>
145                     <skipTests>true</skipTests>
146                     <testFailureIgnore>true</testFailureIgnore>
147                     <excludes>
148                         <exclude>${excludesFile}</exclude>
149                     </excludes>
150                 </configuration>
151             </plugin>
152             
153             <plugin>
154                 <groupId>org.codehaus.mojo</groupId>
155                 <artifactId>cobertura-maven-plugin</artifactId>
156                 <version>2.7</version>
157                 <configuration>
158                     <formats>
159                         <format>html</format>
160                         <format>xml</format>
161                     </formats>
162                     <instrumentation>
163                         <excludes>
164                             <exclude>org/**/*Test.class</exclude>
165                         </excludes>
166                     </instrumentation>
167                 </configuration>
168             </plugin>
169         </plugins>
170     </build>
171 </project>