3bbc429447e1de2af1c0c781cfeda028be3b3430
[vnfsdk/refrepo.git] / servicegateway / pom.xml
1 <!--
2   Copyright 2016 Huawei Technologies Co., Ltd.
3  
4   Licensed under the Apache License, Version 2.0 (the "License");
5   you may not use this file except in compliance with the License.
6   You may obtain a copy of the License at
7  
8       http://www.apache.org/licenses/LICENSE-2.0
9  
10   Unless required by applicable law or agreed to in writing, software
11   distributed under the License is distributed on an "AS IS" BASIS,
12   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   See the License for the specific language governing permissions and
14   limitations under the License.
15 -->
16 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17     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.gso.gui</groupId>
21       <artifactId>gso-gui</artifactId>
22       <version>1.0.0-SNAPSHOT</version>
23     </parent>
24     <groupId>org.openo.gso.gui</groupId>
25     <artifactId>service-gateway-root</artifactId>
26     <version>1.0.0-SNAPSHOT</version>
27     <name>ServiceGatewayRoot</name>
28     <packaging>pom</packaging>
29
30     <properties>
31         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32         <cxf.version>3.1.6</cxf.version>
33     </properties>
34     <modules>
35         <module>service</module>
36         <module>deployment</module>
37     </modules>
38     <scm>
39         <tag>HEAD</tag>
40     </scm>
41         <dependencies>
42         <dependency>
43             <groupId>org.openo.common-services.common-utilities</groupId>
44             <artifactId>commonlib-cbb</artifactId>
45             <version>1.0.0-SNAPSHOT</version>
46         </dependency>
47         <dependency>
48             <groupId>org.openo.common-services.common-utilities</groupId>
49             <artifactId>commonlib-restclient</artifactId>
50             <version>1.0.0-SNAPSHOT</version>
51         </dependency>
52         <dependency>
53             <groupId>org.apache.cxf</groupId>
54             <artifactId>cxf-rt-frontend-jaxrs</artifactId>
55             <version>3.1.6</version>
56         </dependency>
57         <dependency>
58             <groupId>commons-httpclient</groupId>
59             <artifactId>commons-httpclient</artifactId>
60             <version>3.1</version>
61         </dependency>
62
63         <dependency>
64             <groupId>org.openo.gso</groupId>
65             <artifactId>org.openo.gso.commsvc.common</artifactId>
66             <version>1.0.0-SNAPSHOT</version>
67         </dependency>
68         <dependency>
69             <groupId>org.springframework</groupId>
70             <artifactId>spring-beans</artifactId>
71             <version>3.1.0.RELEASE</version>
72         </dependency>
73         <dependency>
74             <groupId>org.springframework</groupId>
75             <artifactId>spring-context</artifactId>
76             <version>3.1.0.RELEASE</version>
77         </dependency>
78         <dependency>
79             <groupId>org.springframework</groupId>
80             <artifactId>spring-jdbc</artifactId>
81             <version>3.1.0.RELEASE</version>
82         </dependency>
83         <dependency>
84             <groupId>org.springframework</groupId>
85             <artifactId>spring-web</artifactId>
86             <version>3.1.0.RELEASE</version>
87         </dependency>
88         <dependency>
89             <groupId>org.osgi</groupId>
90             <artifactId>org.osgi.core</artifactId>
91             <version>4.1.0</version>
92         </dependency>
93         <dependency>
94             <groupId>org.mybatis</groupId>
95             <artifactId>mybatis</artifactId>
96             <version>3.2.7</version>
97         </dependency>
98         <dependency>
99             <groupId>org.mybatis</groupId>
100             <artifactId>mybatis-spring</artifactId>
101             <version>1.2.0</version>
102             <type>jar</type>
103             <scope>compile</scope>
104         </dependency>
105         <dependency>
106             <groupId>com.mchange</groupId>
107             <artifactId>c3p0</artifactId>
108             <version>0.9.2.1</version>
109             <type>jar</type>
110             <scope>compile</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.codehaus.jackson</groupId>
114             <artifactId>jackson-jaxrs</artifactId>
115             <version>1.9.2</version>
116         </dependency>
117         <dependency> 
118             <groupId>javax.servlet</groupId>
119             <artifactId>javax.servlet-api</artifactId>
120             <version>3.1.0</version>
121         </dependency>        
122         <dependency>
123             <groupId>org.jmockit</groupId>
124             <artifactId>jmockit</artifactId>
125             <version>1.18</version>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>junit</groupId>
130             <artifactId>junit</artifactId>
131             <version>4.12</version>
132             <scope>test</scope>
133         </dependency>
134         <dependency>
135             <groupId>org.jmockit</groupId>
136             <artifactId>jmockit-coverage</artifactId>
137             <version>1.18</version>
138             <scope>test</scope>
139         </dependency>
140         <dependency>
141             <groupId>com.h2database</groupId>
142             <artifactId>h2</artifactId>
143             <version>1.4.190</version>
144             <scope>test</scope>
145         </dependency>
146     </dependencies>
147
148
149 </project>